reviewed util.c

This commit is contained in:
arg@mmvi 2006-09-20 09:49:32 +02:00
parent f17e898bd1
commit 4230932563

3
util.c
View file

@ -47,7 +47,8 @@ spawn(Arg *arg) {
if(!arg->cmd)
return;
/* the double-fork construct avoids zombie processes */
/* The double-fork construct avoids zombie processes and keeps the code
* clean from stupid signal handlers. */
if(fork() == 0) {
if(fork() == 0) {
if(dpy)