summaryrefslogtreecommitdiffstats
path: root/raul/Process.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/Process.hpp')
-rw-r--r--raul/Process.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/raul/Process.hpp b/raul/Process.hpp
index 96ac831..4226a46 100644
--- a/raul/Process.hpp
+++ b/raul/Process.hpp
@@ -68,11 +68,11 @@ public:
case -1:
// (second) fork failed, there is no grandchild
- _exit (-1);
+ _exit(-1);
/* exit the child process here */
default:
- _exit (0);
+ _exit(0);
}
}