Squelch some more warnings on Linux

This commit is contained in:
ridiculousfish
2014-04-27 18:27:34 -07:00
parent fb89c762fc
commit 4948508277
8 changed files with 30 additions and 18 deletions

View File

@@ -22,7 +22,7 @@
int writestr(char *str)
{
write(1, str, strlen(str));
write_ignore(1, str, strlen(str));
return 0;
}