From: Anselm R. Garbe Date: Wed, 23 Aug 2006 10:28:39 +0000 (+0200) Subject: eliminated sentinel warning X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=7711ab6707b112e228e142cbd5350d701217555f eliminated sentinel warning --- diff --git a/util.c b/util.c index 2eb9eb2..e19e3e9 100644 --- a/util.c +++ b/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"); }