aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-06-29 14:10:12 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-06-29 19:48:20 -0400
commita032d9e531806b4e2629a9471fc9c856bb72c3a0 (patch)
treee1b1ecc9b41632a9d4c5b5eded0952366c75e632 /src
parent5e0b3fbefebaeff1fa5bfb338c760b9b9e270f02 (diff)
downloadstasis-a032d9e531806b4e2629a9471fc9c856bb72c3a0.tar.gz
Remove errant double call to SYSERROR
Diffstat (limited to 'src')
-rw-r--r--src/lib/core/multiprocessing.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/core/multiprocessing.c b/src/lib/core/multiprocessing.c
index 6c64888..0a63659 100644
--- a/src/lib/core/multiprocessing.c
+++ b/src/lib/core/multiprocessing.c
@@ -89,7 +89,6 @@ int child(struct MultiProcessingPool *pool, struct MultiProcessingTask *task) {
const int redirect = dup2(STDOUT_FILENO, STDERR_FILENO);
if (redirect < 0) {
- SYSERROR("%s", "Unable to redirect stderr to stdout");
SYSERROR("Unable to redirect stderr to stdout");
fclose(fp_log);
semaphore_post(&pool->semaphore);