diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-02-21 05:32:20 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-02-21 05:32:20 +0100 |
commit | 0181117b5f56341e71f72f1cda37e815853eaacc (patch) | |
tree | 98bbf18c808af3017e907786b676e693be36d838 /sys/src/cmd/paint.c | |
parent | fef5c8e4caf7a673e81d733c11e6410f8e427623 (diff) |
fork filter procs with RFREND in various programs
Diffstat (limited to 'sys/src/cmd/paint.c')
-rw-r--r-- | sys/src/cmd/paint.c | 2 |
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]); |