From 3f10306c6ac67eaccbc11b22eed26f6ce2725bfe Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 10 May 2026 15:31:06 -0400 Subject: Update SYS* macro calls --- src/cli/stasis_indexer/args.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cli/stasis_indexer/args.c') diff --git a/src/cli/stasis_indexer/args.c b/src/cli/stasis_indexer/args.c index e77c0b7..0d0e9b9 100644 --- a/src/cli/stasis_indexer/args.c +++ b/src/cli/stasis_indexer/args.c @@ -23,7 +23,7 @@ void usage(char *name) { const int maxopts = sizeof(long_options) / sizeof(long_options[0]); char *opts = calloc(maxopts + 1, sizeof(char)); if (!opts) { - SYSERROR("%s", "Unable to allocate memory for options array"); + SYSERROR("Unable to allocate memory for options array"); exit(1); } for (int i = 0; i < maxopts; i++) { -- cgit