From 0bf2982f433a0be52ea4e2a5b11108650fa5b2a2 Mon Sep 17 00:00:00 2001 From: Gunnar Dalsnes Date: Fri, 17 Dec 2004 00:44:46 +0000 Subject: [PATCH] IntReadConsole: don't tell we failed just because we didn't fill up the read buffer! svn path=/trunk/; revision=12161 --- reactos/lib/kernel32/misc/console.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/kernel32/misc/console.c b/reactos/lib/kernel32/misc/console.c index 382b8debe32..77b3049292e 100644 --- a/reactos/lib/kernel32/misc/console.c +++ b/reactos/lib/kernel32/misc/console.c @@ -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 @@ IntReadConsole(HANDLE hConsoleInput, *lpNumberOfCharsRead = CharsRead; } - return (nNumberOfCharsToRead == 0); + return TRUE; }