From 3bccf24f6f1014d55fc60049422f67a6c97e10ba Mon Sep 17 00:00:00 2001 From: Morris Jette <jette@schedmd.com> Date: Thu, 16 Oct 2014 14:51:12 -0700 Subject: [PATCH] Minor code refactoring No change in functionality, just eliminated a call to time(). --- src/plugins/select/cons_res/select_cons_res.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/select/cons_res/select_cons_res.c b/src/plugins/select/cons_res/select_cons_res.c index 3bf8c8c6a88..ebddcc088b3 100644 --- a/src/plugins/select/cons_res/select_cons_res.c +++ b/src/plugins/select/cons_res/select_cons_res.c @@ -1698,7 +1698,7 @@ static int _will_run_test(struct job_record *job_ptr, bitstr_t *bitmap, select_node_usage, exc_core_bitmap); if (rc == SLURM_SUCCESS) { FREE_NULL_BITMAP(orig_map); - job_ptr->start_time = time(NULL); + job_ptr->start_time = now; return SLURM_SUCCESS; } -- GitLab