diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-10-28 14:13:59 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2013-10-28 14:13:59 +0200 |
commit | 200819267fd20424150fce79c5e579945f8f8f5d (patch) | |
tree | 1da777ffe9f49047679e424128f201389d880d10 /src/pingu_host.c | |
parent | 32a132acd697590df99b57505dbcd7437780a96e (diff) | |
download | pingu-master.tar.bz2 pingu-master.tar.xz |
to compile against musl, and remove some gcc 4.8.x warnings.
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); } |