summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/database.c2
-rw-r--r--src/url.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/database.c b/src/database.c
index 01914ee..afe0a8c 100644
--- a/src/database.c
+++ b/src/database.c
@@ -1379,7 +1379,7 @@ static int do_remount(const char *path, const char *option)
if (pid == 0) {
execl("/bin/mount", "mount", "-o", "remount", "-o",
- option, path, NULL);
+ option, path, (void*) 0);
return 1;
}
diff --git a/src/url.c b/src/url.c
index 974fc54..6c62c95 100644
--- a/src/url.c
+++ b/src/url.c
@@ -70,11 +70,11 @@ static int fork_wget(const char *url, pid_t *ppid)
close(fds[0]);
dup2(open("/dev/null", O_RDONLY), STDIN_FILENO);
dup2(fds[1], STDOUT_FILENO);
- execlp("wget", "wget", "-q", "-O", "-", url, NULL);
+ execlp("wget", "wget", "-q", "-O", "-", url, (void*) 0);
/* fall back to busybox wget
* See http://redmine.alpinelinux.org/issues/347
*/
- execlp("busybox", "wget", "-q", "-O", "-", url, NULL);
+ execlp("busybox", "wget", "-q", "-O", "-", url, (void*) 0);
exit(0);
}