Skip to content
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions openmp/libompd/gdb-plugin/ompdModule.c
Original file line number Diff line number Diff line change
Expand Up @@ -1180,9 +1180,9 @@ static PyObject *call_ompd_get_icv_from_scope(PyObject *self, PyObject *args) {

if (retVal != ompd_rc_ok) {
if (retVal != ompd_rc_incomplete) {
_printf("An error occurred when calling ompd_get_icv_from_scope(%i, %i): "
"Error code: %d",
scope, icvId, retVal);
_printf(
"An error occurred when calling ompd_get_icv_from_scope(%i, %" PRIu64
"): Error code: %d", scope, icvId, retVal);
}
return Py_None;
}
Expand Down
Loading