conhost: Fix a printf format warning.

This commit is contained in:
Alexandre Julliard 2024-05-24 12:35:38 +02:00
parent 5df6f5a513
commit 83888e37df

View file

@ -1313,7 +1313,7 @@ static NTSTATUS process_console_input( struct console *console )
ctrl_value = ir.Event.KeyEvent.uChar.UnicodeChar;
ctrl_keyvalue = ir.Event.KeyEvent.dwControlKeyState;
ctx->status = STATUS_SUCCESS;
TRACE("Found ctrl char in mask: ^%lc %x\n", ir.Event.KeyEvent.uChar.UnicodeChar + '@', ctx->ctrl_mask);
TRACE("Found ctrl char in mask: ^%c %x\n", ir.Event.KeyEvent.uChar.UnicodeChar + '@', ctx->ctrl_mask);
continue;
}
if (ir.Event.KeyEvent.uChar.UnicodeChar == 10) continue;