From 9ab7924df5619225fee38d0fbf2f7d1c55a23109 Mon Sep 17 00:00:00 2001 From: Morris Jette <jette@schedmd.com> Date: Wed, 3 Jan 2018 11:41:50 -0700 Subject: [PATCH] Continuation of last commit, just minor formatting changes. --- src/squeue/print.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/squeue/print.c b/src/squeue/print.c index ad31d586c95..f50491743f5 100644 --- a/src/squeue/print.c +++ b/src/squeue/print.c @@ -2641,10 +2641,10 @@ static int _filter_job(job_info_t * job) filter = 1; iterator = list_iterator_create(params.job_list); while ((job_step_id = list_next(iterator))) { - if (((job_step_id->array_id == NO_VAL) && - ((job_step_id->job_id == job->array_job_id) || + if (((job_step_id->array_id == NO_VAL) && + ((job_step_id->job_id == job->array_job_id) || (job_step_id->job_id == job->job_id))) || - ((job_step_id->array_id == job->array_task_id) && + ((job_step_id->array_id == job->array_task_id) && (job_step_id->job_id == job->array_job_id))) { filter = 0; break; -- GitLab