aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2025-11-04 12:45:06 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2025-11-04 12:45:06 -0500
commitec30db7a195ee510715cba822ab4bd3e748064d6 (patch)
tree90c795822c1440a4e2f38aa506627a4c48c8838d /src
parent6de3db226d65604f37a4fbed5232546f42c191b9 (diff)
downloadstasis-ec30db7a195ee510715cba822ab4bd3e748064d6.tar.gz
Fix incorrect formatter in SYSERROR call
Diffstat (limited to 'src')
-rw-r--r--src/cli/stasis_indexer/stasis_indexer_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/stasis_indexer/stasis_indexer_main.c b/src/cli/stasis_indexer/stasis_indexer_main.c
index 107e8ca..0214da1 100644
--- a/src/cli/stasis_indexer/stasis_indexer_main.c
+++ b/src/cli/stasis_indexer/stasis_indexer_main.c
@@ -337,7 +337,7 @@ int main(const int argc, char *argv[]) {
// Copy the pre-filled contents of the main delivery context
local[i] = delivery_duplicate(&ctx);
if (!local[i]) {
- SYSERROR("%s", "Unable to duplicate delivery context %zu", i);
+ SYSERROR("Unable to duplicate delivery context %zu", i);
exit(1);
}
if (globals.verbose) {