fix opensolaris warning

This commit is contained in:
Erik Ekman 2008-08-06 18:59:22 +00:00 committed by Erik Ekman
parent 21ad2ef5ae
commit c01f42fd0f

View File

@ -61,7 +61,7 @@ static int daemon(int nochdir, int noclose)
}
if (!noclose) {
if (fd = open("/dev/null", O_RDWR) >= 0) {
if ((fd = open("/dev/null", O_RDWR)) >= 0) {
for (i = 0; i < 3; i++) {
dup2(fd, i);
}