diff options
author | Gerrit Pape <pape@smarden.org> | 2003-05-04 09:41:10 +0000 |
---|---|---|
committer | Gerrit Pape <pape@smarden.org> | 2003-05-04 09:41:10 +0000 |
commit | 024c88b50c33f299f1df29b2c103621ceb8f9d97 (patch) | |
tree | 30380478e80b5ccbc18f0938c5678684871b8a2e /src | |
parent | b2ccc29f9c0846918bb650fbae026cc5268ad918 (diff) | |
download | runit-024c88b50c33f299f1df29b2c103621ceb8f9d97.tar.gz runit-024c88b50c33f299f1df29b2c103621ceb8f9d97.tar.xz runit-024c88b50c33f299f1df29b2c103621ceb8f9d97.zip |
minor.
Diffstat (limited to 'src')
-rw-r--r-- | src/runsvctrl.c | 2 | ||||
-rw-r--r-- | src/runsvstat.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/runsvctrl.c b/src/runsvctrl.c index 8430ec5..21fe00d 100644 --- a/src/runsvctrl.c +++ b/src/runsvctrl.c @@ -77,5 +77,5 @@ int main(int argc, char **argv) { } } if (rc > 100) rc =100; - exit(rc); + _exit(rc); } diff --git a/src/runsvstat.c b/src/runsvstat.c index 216ccdc..e0e7673 100644 --- a/src/runsvstat.c +++ b/src/runsvstat.c @@ -163,5 +163,5 @@ int main(int argc, char **argv) { } } if (rc > 100) rc =100; - exit(rc); + _exit(rc); } |