summaryrefslogtreecommitdiff
path: root/sys/src/cmd/paint.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2014-02-21 05:32:20 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2014-02-21 05:32:20 +0100
commit0181117b5f56341e71f72f1cda37e815853eaacc (patch)
tree98bbf18c808af3017e907786b676e693be36d838 /sys/src/cmd/paint.c
parentfef5c8e4caf7a673e81d733c11e6410f8e427623 (diff)
fork filter procs with RFREND in various programs
Diffstat (limited to 'sys/src/cmd/paint.c')
-rw-r--r--sys/src/cmd/paint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/paint.c b/sys/src/cmd/paint.c
index cfc07b158..4b2087de2 100644
--- a/sys/src/cmd/paint.c
+++ b/sys/src/cmd/paint.c
@@ -562,7 +562,7 @@ pipeline(char *fmt, ...)
va_end(a);
if(pipe(p) < 0)
return -1;
- switch(rfork(RFPROC|RFMEM|RFFDG|RFNOTEG)){
+ switch(rfork(RFPROC|RFMEM|RFFDG|RFNOTEG|RFREND)){
case -1:
close(p[0]);
close(p[1]);