Commit in reactos/lib/kernel32/misc on MAIN | |||
console.c | +2 | -2 | 1.83 -> 1.84 |
IntReadConsole: don't tell we failed just because we didn't fill up the read buffer!
diff -u -r1.83 -r1.84 --- console.c 14 Nov 2004 18:47:09 -0000 1.83 +++ console.c 17 Dec 2004 00:44:46 -0000 1.84 @@ -1,4 +1,4 @@
-/* $Id: console.c,v 1.83 2004/11/14 18:47:09 hbirr Exp $
+/* $Id: console.c,v 1.84 2004/12/17 00:44:46 gdalsnes Exp $
* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS system libraries
@@ -1290,7 +1290,7 @@
*lpNumberOfCharsRead = CharsRead; }
- return (nNumberOfCharsToRead == 0);
+ return TRUE;
}