Skip to content
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion openmp/libompd/gdb-plugin/ompdModule.c
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ static PyObject *call_ompd_get_task_parallel_handle(PyObject *self,

if (retVal != ompd_rc_ok) {
_printf("An error occurred when calling ompd_get_task_parallel_handle! "
"Error code: %d");
"Error code: %d", retVal);
return Py_BuildValue("l", retVal);
}
return PyCapsule_New(taskParallelHandle, "ParallelHandle",
Expand Down
Loading