diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-05-10 21:37:13 -0400 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-05-11 15:56:07 -0400 |
| commit | 98d50a05c62b772a6c391d05f175f44d8764c8a5 (patch) | |
| tree | b5d93be34ffc965e2881995a9c6a1a650cafed88 /src/cli | |
| parent | 69c99be43c918f7f0723fa6632ae1a766ed794e5 (diff) | |
| download | stasis-98d50a05c62b772a6c391d05f175f44d8764c8a5.tar.gz | |
Update SYS_* macros
Diffstat (limited to 'src/cli')
| -rw-r--r-- | src/cli/stasis_indexer/junitxml_report.c | 4 |
1 files 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; } |
