summaryrefslogtreecommitdiffstats
path: root/raul/Process.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/Process.hpp')
-rw-r--r--raul/Process.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/raul/Process.hpp b/raul/Process.hpp
index 0b3a819..5804775 100644
--- a/raul/Process.hpp
+++ b/raul/Process.hpp
@@ -59,7 +59,7 @@ public:
case 0:
// (in grandchild)
setsid();
- execvp(argv[0], (char*const*)argv);
+ execvp(argv[0], const_cast<char*const*>(argv));
_exit(-1);
case -1: