aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cli/stasis_indexer/junitxml_report.c4
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;
}