From a7a869c2d5f9398a6348dbeacbfec115a5b7d34e Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 9 Feb 2016 17:06:12 -0600 Subject: Fix xpipe. (thinko.) --- lib/xwrap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/xwrap.c') diff --git a/lib/xwrap.c b/lib/xwrap.c index 76b0ff37..78103555 100644 --- a/lib/xwrap.c +++ b/lib/xwrap.c @@ -310,7 +310,7 @@ int xopen(char *path, int flags) return xcreate(path, flags, 0); } -void xpipe(int pp) +void xpipe(int *pp) { if (pipe(pp)) perror_exit("xpipe"); } -- cgit v1.2.3