projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d370c32
)
eliminated sentinel warning
author
Anselm R. Garbe
<arg@10kloc.org>
Wed, 23 Aug 2006 10:28:39 +0000
(12:28 +0200)
committer
Anselm R. Garbe
<arg@10kloc.org>
Wed, 23 Aug 2006 10:28:39 +0000
(12:28 +0200)
util.c
patch
|
blob
|
history
diff --git
a/util.c
b/util.c
index 2eb9eb2420ccec6ae1b5e2da1649b960e588ee91..e19e3e97103cfa3edb41c09327710d94e9235f91 100644
(file)
--- 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");
}