[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:
CatherineMoore
2025-08-15 15:30:47 -04:00
committed by GitHub
parent c6ea7d72d1
commit 49e28d77b8

View File

@@ -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;
}