aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sinit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sinit.c b/sinit.c
index c255205..be278bb 100644
--- a/sinit.c
+++ b/sinit.c
@@ -102,7 +102,7 @@ static void
spawn(const Arg *arg)
{
pid_t pid;
- const char *p = arg->v;
+ char *const *p = arg->v;
pid = fork();
if (pid < 0)
@@ -110,7 +110,7 @@ spawn(const Arg *arg)
if (pid == 0) {
setsid();
setpgid(0, 0);
- execvp(p, arg->v);
+ execvp(*p, p);
weprintf("sinit: execvp %s:", p);
_exit(errno == ENOENT ? 127 : 126);
}