Skip to content

Commit 97e3abf

Browse files
chu11mergify[bot]
authored andcommitted
job-list: correct rfc7 code style violations
Problem: Several lines of code were > 80 characters long.
1 parent d295ae3 commit 97e3abf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/modules/job-list/job_state.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -827,14 +827,16 @@ static void process_next_state (struct list_ctx *ctx, struct job *job)
827827
if (st->state == FLUX_JOB_STATE_DEPEND) {
828828
/* get initial jobspec */
829829
if (!(f = state_depend_lookup (jsctx, job))) {
830-
flux_log_error (jsctx->h, "%s: state_depend_lookup", __FUNCTION__);
830+
flux_log_error (jsctx->h, "%s: state_depend_lookup",
831+
__FUNCTION__);
831832
return;
832833
}
833834
}
834835
else { /* st->state == FLUX_JOB_STATE_RUN */
835836
/* get R to get node count, etc. */
836837
if (!(f = state_run_lookup (jsctx, job))) {
837-
flux_log_error (jsctx->h, "%s: state_run_lookup", __FUNCTION__);
838+
flux_log_error (jsctx->h, "%s: state_run_lookup",
839+
__FUNCTION__);
838840
return;
839841
}
840842
}

0 commit comments

Comments
 (0)