about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-08-23 12:28:39 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-08-23 12:28:39 +0200
commit7711ab6707b112e228e142cbd5350d701217555f (patch)
tree548aba5c25790471fb0818be33c9dba39afe362b
parentd370c32f69a5696145d086e1ed97392420c04783 (diff)
downloaddwm-7711ab6707b112e228e142cbd5350d701217555f.tar.gz
eliminated sentinel warning
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
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");
 		}
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164