From 200819267fd20424150fce79c5e579945f8f8f5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20Ter=C3=A4s?= Date: Mon, 28 Oct 2013 14:13:59 +0200 Subject: fix various #include issues and remove unused functions to compile against musl, and remove some gcc 4.8.x warnings. --- src/pingu_host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pingu_host.c') 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); } -- cgit v1.2.3