kernel32: Remove a useless error message.
This commit is contained in:
parent
e0d712da61
commit
fc38254fed
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue