1
0
Fork 1
mirror of https://git.suckless.org/dwm synced 2025-03-14 02:33:15 -07:00

added a comment to spawn

This commit is contained in:
Anselm R. Garbe 2006-08-28 08:17:27 +02:00
parent 0a25fe9188
commit a50b15a9e9

1
util.c
View file

@ -51,6 +51,7 @@ spawn(Arg *arg)
if(!arg->cmd)
return;
/* the double-fork construct avoids zombie processes */
if(fork() == 0) {
if(fork() == 0) {
if(dpy)