silly sun

This commit is contained in:
Russ Cox
2006-05-24 15:24:14 +00:00
parent 083b5a0e40
commit 964d0bdc57
2 changed files with 3 additions and 3 deletions

View File

@ -141,7 +141,7 @@ putstrn0(char *str, int n, int usewrite)
qwrite(kprintoq, str, n);
else
qiwrite(kprintoq, str, n);
}else if(screenputs != nil)
}else if(screenputs != 0)
screenputs(str, n);
}
@ -1177,7 +1177,7 @@ iprint(char *fmt, ...)
va_start(arg, fmt);
n = vseprint(buf, buf+sizeof(buf), fmt, arg) - buf;
va_end(arg);
if(screenputs != nil && iprintscreenputs)
if(screenputs != 0 && iprintscreenputs)
screenputs(buf, n);
#undef write
write(2, buf, n);