summaryrefslogtreecommitdiffstats
path: root/edd/pyedd.c
diff options
context:
space:
mode:
Diffstat (limited to 'edd/pyedd.c')
-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);