summaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2007-08-03 21:23:33 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2007-08-03 21:23:33 +0200
commitb4bf1d3f2265c9cc7809b759665b4223f783e00b (patch)
tree1f85a2d187d2fcd1a1b3c662443ff9612ec31f40 /src/util.c
parent7a3addfd66c6b310e5bb32d831a3b362245fee11 (diff)
use _exit() instead of exit()
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c
index 7a31712..e7b78f6 100644
--- a/src/util.c
+++ b/src/util.c
@@ -44,7 +44,7 @@ pexecvp(const char *file, char *const argv[], pid_t *pid, char *type) {
}
execvp(file, argv);
- exit(127);
+ _exit(127);
} else {
/* parent */
if (*type == 'r') {