all repos — dwm @ 7711ab6707b112e228e142cbd5350d701217555f

my dwm build

eliminated sentinel warning
Anselm R. Garbe arg@10kloc.org
Wed, 23 Aug 2006 12:28:39 +0200
commit

7711ab6707b112e228e142cbd5350d701217555f

parent

d370c32f69a5696145d086e1ed97392420c04783

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M util.cutil.c

@@ -56,7 +56,7 @@ if(fork() == 0) {

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"); }