Fixed: chatclient sample compilation

This commit is contained in:
kervala 2010-08-18 18:14:58 +02:00
parent 585b053040
commit 10553e96c1

View file

@ -71,8 +71,8 @@ int getch()
peek_character = -1; peek_character = -1;
return ch; return ch;
} }
if (read(STDIN_FILENO,&ch,1) != 1) if (read(STDIN_FILENO,&ch,1) != 1) return ' ';
nlwarning("Can't read keyboard");
return ch; return ch;
} }