Browse Source

eliminated sentinel warning

master
Anselm R. Garbe 18 years ago
parent
commit
7711ab6707
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      util.c

+ 1
- 1
util.c View File

@ -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…
Cancel
Save