Skip to content

Commit f7c408c

Browse files
committed
job-exec: fix whitespace error
Problem: A comma and space are transposed in a call to ERRNO_SAFE_WRAP in the job-exec module. Fix the whitespace error.
1 parent af0c5f4 commit f7c408c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/job-exec/job-exec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ flux_future_t *jobinfo_shell_rpc_pack (struct jobinfo *job,
186186
flux_future_aux_set (f, "jobinfo", job, (flux_free_f) jobinfo_decref);
187187
jobinfo_incref (job);
188188
out:
189-
ERRNO_SAFE_WRAP (free ,shell_topic);
189+
ERRNO_SAFE_WRAP (free, shell_topic);
190190
return f;
191191
}
192192

0 commit comments

Comments
 (0)