Skip to content

Commit ad606a8

Browse files
committed
flux-job: remove extraneous spaces
Problem: Some extraneous extra spaces exist after some function parameters. Remove the extraneous extra spaces.
1 parent 4ea7063 commit ad606a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/cmd/flux-job.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3398,7 +3398,7 @@ int cmd_info (optparse_t *p, int argc, char **argv)
33983398
"keys", "J",
33993399
"flags", 0))
34003400
|| flux_rpc_get_unpack (f, "{s:s}", "J", &val) < 0)
3401-
log_msg_exit ("%s", future_strerror (f, errno ));
3401+
log_msg_exit ("%s", future_strerror (f, errno));
34023402
if (!(new_val = flux_unwrap_string (val, false, NULL, &error)))
34033403
log_msg_exit ("Failed to unwrap J to get jobspec: %s", error.text);
34043404
val = new_val;
@@ -3423,7 +3423,7 @@ int cmd_info (optparse_t *p, int argc, char **argv)
34233423
"{s:s s:s}",
34243424
"jobspec", &jobspec,
34253425
"eventlog", &eventlog) < 0)
3426-
log_msg_exit ("%s", future_strerror (f, errno ));
3426+
log_msg_exit ("%s", future_strerror (f, errno));
34273427
val = new_val = reconstruct_current_jobspec (jobspec, eventlog);
34283428
}
34293429
/* The current (non --base) R is obtained through the
@@ -3440,7 +3440,7 @@ int cmd_info (optparse_t *p, int argc, char **argv)
34403440
"key", key,
34413441
"flags", 0))
34423442
|| flux_rpc_get_unpack (f, "{s:o}", key, &o) < 0)
3443-
log_msg_exit ("%s", future_strerror (f, errno ));
3443+
log_msg_exit ("%s", future_strerror (f, errno));
34443444
if (!(new_val = json_dumps (o, JSON_COMPACT)))
34453445
log_msg_exit ("error encoding R object");
34463446
val = new_val;
@@ -3457,7 +3457,7 @@ int cmd_info (optparse_t *p, int argc, char **argv)
34573457
"keys", key,
34583458
"flags", 0))
34593459
|| flux_rpc_get_unpack (f, "{s:s}", key, &val) < 0)
3460-
log_msg_exit ("%s", future_strerror (f, errno ));
3460+
log_msg_exit ("%s", future_strerror (f, errno));
34613461
}
34623462

34633463
printf ("%s\n", val);

0 commit comments

Comments
 (0)