Skip to content

Commit

Permalink
32-bit: fix in job-manager/start courtesy of @grondo
Browse files Browse the repository at this point in the history
One more missed i->I in a pack function courtesy of @grondo, the last
in-code 32-bit bug as far as I can tell.
  • Loading branch information
trws committed Aug 7, 2023
1 parent 6fa8fee commit 98beba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/job-manager/start.c
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ int start_send_request (struct start *start, struct job *job)
if (!(msg = flux_request_encode (start->topic, NULL)))
return -1;
if (flux_msg_pack (msg,
"{s:I s:i s:O s:b}",
"{s:I s:I s:O s:b}",
"id", job->id,
"userid", (json_int_t) job->userid,
"jobspec", job->jobspec_redacted,
Expand Down

0 comments on commit 98beba8

Please sign in to comment.