mirror of
https://github.com/intel/llvm.git
synced 2026-01-13 02:38:07 +08:00
[OpenMP] Update ompdModule.c printf to match argument type (#152785)
Update printf format string to match argument list --------- Co-authored-by: Joachim <protze@rz.rwth-aachen.de> Co-authored-by: Joachim Jenke <jenke@itc.rwth-aachen.de>
This commit is contained in:
@@ -1181,9 +1181,10 @@ 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user