kernel32: Remove a useless error message.

This commit is contained in:
André Hentschel 2011-02-15 19:49:10 +01:00 committed by Alexandre Julliard
parent e0d712da61
commit fc38254fed
1 changed files with 0 additions and 1 deletions

View File

@ -97,7 +97,6 @@ static void WCEL_Dump(WCEL_Context* ctx, const char* pfx)
static BOOL WCEL_Get(WCEL_Context* ctx, INPUT_RECORD* ir) static BOOL WCEL_Get(WCEL_Context* ctx, INPUT_RECORD* ir)
{ {
if (ReadConsoleInputW(ctx->hConIn, ir, 1, NULL)) return TRUE; if (ReadConsoleInputW(ctx->hConIn, ir, 1, NULL)) return TRUE;
ERR("hmm bad situation\n");
ctx->error = 1; ctx->error = 1;
return FALSE; return FALSE;
} }