Skip to content

Commit 06d97b9

Browse files
committed
broker: fix line breaks
Problem: a function call with a long parameter list is not broken to one per line, as per project norms. Fix line breaks.
1 parent 3bea87c commit 06d97b9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/broker/broker.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -769,8 +769,9 @@ static int create_runat_phases (broker_ctx_t *ctx)
769769
/* rc2 - initial program
770770
*/
771771
if (ctx->rank == 0 && !rc2_none) {
772-
if (create_runat_rc2 (ctx->runat, ctx->init_shell_cmd,
773-
ctx->init_shell_cmd_len) < 0) {
772+
if (create_runat_rc2 (ctx->runat,
773+
ctx->init_shell_cmd,
774+
ctx->init_shell_cmd_len) < 0) {
774775
log_err ("create_runat_rc2");
775776
return -1;
776777
}

0 commit comments

Comments
 (0)