about summary refs log tree commit diff
path: root/lib/libsystem.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libsystem.c')
-rw-r--r--lib/libsystem.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libsystem.c b/lib/libsystem.c
index f0a1996a..4581aa66 100644
--- a/lib/libsystem.c
+++ b/lib/libsystem.c
@@ -135,7 +135,8 @@ spawnProcessor(const char *  const progName,
    descriptor of the other end of that pipe, from which Caller can
    suck the program's Standard Output.
 -----------------------------------------------------------------------------*/
-    bool const pipeStdout = !stdoutFdP;
+    bool const pipeStdout = !!stdoutFdP;
+
     int stdoutpipe[2];
     pid_t rc;