Skip to content
Snippets Groups Projects
Commit 13d5d1d3 authored by Moe Jette's avatar Moe Jette
Browse files

change some print statements for jobid from type %d to %u.

parent bab32f55
No related branches found
No related tags found
No related merge requests found
...@@ -1055,7 +1055,7 @@ _kill_all_active_steps(void *auth_cred, uint32_t jobid, int sig, bool batch) ...@@ -1055,7 +1055,7 @@ _kill_all_active_steps(void *auth_cred, uint32_t jobid, int sig, bool batch)
while (stepd = list_next(i)) { while (stepd = list_next(i)) {
if (stepd->jobid != jobid) { if (stepd->jobid != jobid) {
/* multiple jobs expected on shared nodes */ /* multiple jobs expected on shared nodes */
debug3("Step from other job: jobid=%d (this jobid=%d)", debug3("Step from other job: jobid=%u (this jobid=%u)",
stepd->jobid, jobid); stepd->jobid, jobid);
continue; continue;
} }
...@@ -1068,12 +1068,12 @@ _kill_all_active_steps(void *auth_cred, uint32_t jobid, int sig, bool batch) ...@@ -1068,12 +1068,12 @@ _kill_all_active_steps(void *auth_cred, uint32_t jobid, int sig, bool batch)
debug2("container signal %d to job %u.%u", debug2("container signal %d to job %u.%u",
sig, jobid, stepd->stepid); sig, jobid, stepd->stepid);
if (stepd_signal_container(*stepd, auth_cred, sig) < 0) if (stepd_signal_container(*stepd, auth_cred, sig) < 0)
debug("kill jid %d: %m", jobid); debug("kill jobid=%u: %m", jobid);
} }
list_iterator_destroy(i); list_iterator_destroy(i);
list_destroy(steps); list_destroy(steps);
if (step_cnt == 0) if (step_cnt == 0)
debug2("No steps in jobid %d to send signal %d", jobid, sig); debug2("No steps in jobid %u to send signal %d", jobid, sig);
return step_cnt; return step_cnt;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment