From ea9dd8ab7f5fd8ead278ed8d4fa2d96c4e4a67b9 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 4 Feb 2017 14:55:36 -0600 Subject: Posix says stdio.h should define 'stdout' as a macro, and bionic turns it into an array index, which doesn't work as a local variable name. So rename it. --- lib/xwrap.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/xwrap.c') diff --git a/lib/xwrap.c b/lib/xwrap.c index 2e52d6b4..0281e701 100644 --- a/lib/xwrap.c +++ b/lib/xwrap.c @@ -281,14 +281,14 @@ int xpclose_both(pid_t pid, int *pipes) } // Wrapper to xpopen with a pipe for just one of stdin/stdout -pid_t xpopen(char **argv, int *pipe, int stdout) +pid_t xpopen(char **argv, int *pipe, int isstdout) { int pipes[2], pid; - pipes[!stdout] = -1; - pipes[!!stdout] = 0; + pipes[!isstdout] = -1; + pipes[!!isstdout] = 0; pid = xpopen_both(argv, pipes); - *pipe = pid ? pipes[!!stdout] : -1; + *pipe = pid ? pipes[!!isstdout] : -1; return pid; } -- cgit v1.2.3