eliminated sentinel warning
This commit is contained in:
parent
d370c32f69
commit
7711ab6707
2
util.c
2
util.c
@ -56,7 +56,7 @@ spawn(Arg *arg)
|
||||
if(dpy)
|
||||
close(ConnectionNumber(dpy));
|
||||
setsid();
|
||||
execl(shell, shell, "-c", arg->cmd, NULL);
|
||||
execl(shell, shell, "-c", arg->cmd, (char *)NULL);
|
||||
fprintf(stderr, "dwm: execl '%s -c %s'", shell, arg->cmd);
|
||||
perror(" failed");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user