diff options
Diffstat (limited to 'src/pingu_host.c')
-rw-r--r-- | src/pingu_host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pingu_host.c b/src/pingu_host.c index 5887996..b2b59a4 100644 --- a/src/pingu_host.c +++ b/src/pingu_host.c @@ -37,7 +37,7 @@ void execute_action(const char *action) return; } if (pid == 0) { - execl(shell, shell, "-c", action, NULL); + execl(shell, shell, "-c", action, (void*) NULL); log_perror(action); exit(1); } |