From 98d50a05c62b772a6c391d05f175f44d8764c8a5 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 10 May 2026 21:37:13 -0400 Subject: Update SYS_* macros --- src/cli/stasis_indexer/junitxml_report.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/stasis_indexer/junitxml_report.c b/src/cli/stasis_indexer/junitxml_report.c index 909bf1d..a7dcd06 100644 --- a/src/cli/stasis_indexer/junitxml_report.c +++ b/src/cli/stasis_indexer/junitxml_report.c @@ -31,13 +31,13 @@ static int write_report_output(struct Delivery *ctx, FILE *destfp, const char *x char *bname_tmp = strdup(xmlfilename); if (!bname_tmp) { - SYSERROR("%s", "unable to allocate bytes for temporary basename"); + SYSERROR("unable to allocate bytes for temporary basename"); return -1; } char *bname = strdup(path_basename(bname_tmp)); if (!bname) { - SYSERROR("%s", "unable to allocate bytes for basename"); + SYSERROR("unable to allocate bytes for basename"); return -1; } -- cgit