summaryrefslogtreecommitdiffstats
path: root/edd
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-11-16 17:20:40 +0000
committerErik Troan <ewt@redhat.com>2000-11-16 17:20:40 +0000
commitebe9d756a1fa013be48117ccea91f394ce18044d (patch)
treefa0c79d05fb84bd995c99a4aabf7ea82a41cd684 /edd
parent74ee07dc039fba05d6086ad3da77c6dc7415875f (diff)
downloadanaconda-ebe9d756a1fa013be48117ccea91f394ce18044d.tar.gz
anaconda-ebe9d756a1fa013be48117ccea91f394ce18044d.tar.xz
anaconda-ebe9d756a1fa013be48117ccea91f394ce18044d.zip
_exit is a good idea
Diffstat (limited to 'edd')
-rw-r--r--edd/pyedd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/edd/pyedd.c b/edd/pyedd.c
index 8cd1f41c8..01492a9ac 100644
--- a/edd/pyedd.c
+++ b/edd/pyedd.c
@@ -45,10 +45,10 @@ edd_py_detect (PyObject * s, PyObject * args) {
if (!(childpid = fork())) {
if ((ec = edd_supported(device))) {
free (ec);
- exit(1);
+ _exit(1);
}
- exit(0);
+ _exit(0);
}
waitpid(childpid, &status, 0);