From 3b4bcede398591bc2fdb9836e5e21a7f1913191d Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Thu, 29 Aug 2024 16:50:34 +0530 Subject: c: clean up --- src/evanix.c | 8 +++++--- src/jobs.c | 3 +-- 2 files changed, 6 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/evanix.c b/src/evanix.c index 6986444..92f9596 100644 --- a/src/evanix.c +++ b/src/evanix.c @@ -26,7 +26,8 @@ static const char usage[] = " -p, --pipelined Use evanix build pipeline.\n" " -l, --check_cache-status Perform cache locality check.\n" " -c, --close-unused-fd Close stderr on exec.\n" - " -e, --statistics Path to time statistics database.\n" + " -e, --statistics Path to time statistics " + "database.\n" " -k, --solver sjf|conformity|highs Solver to use.\n" "\n"; @@ -325,8 +326,9 @@ static int opts_read(struct evanix_opts_t *opts, char **expr, int argc, ret = -EINVAL; goto out_free_evanix; } else if (opts->max_time && !opts->statistics.db) { - fprintf(stderr, "evanix: option --max-time implies --statistics\n" - "Try 'evanix --help' for more information.\n"); + fprintf(stderr, + "evanix: option --max-time implies --statistics\n" + "Try 'evanix --help' for more information.\n"); ret = -EINVAL; goto out_free_evanix; } diff --git a/src/jobs.c b/src/jobs.c index 8f4efb1..8410522 100644 --- a/src/jobs.c +++ b/src/jobs.c @@ -1,9 +1,9 @@ #include +#include #include #include #include #include -#include #include #include @@ -552,7 +552,6 @@ int job_read(FILE *stream, struct job **job) ret = JOB_READ_SUCCESS; } - out_free: cJSON_Delete(root); if (ret != JOB_READ_SUCCESS) -- cgit v1.2.3