Module: wine Branch: master Commit: 83888e37df06f8e6d85536d355332734986bc633 URL: https://gitlab.winehq.org/wine/wine/-/commit/83888e37df06f8e6d85536d35533273...
Author: Alexandre Julliard julliard@winehq.org Date: Fri May 24 12:35:38 2024 +0200
conhost: Fix a printf format warning.
---
programs/conhost/conhost.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/conhost/conhost.c b/programs/conhost/conhost.c index 419d94c3eed..4272e8b12f5 100644 --- a/programs/conhost/conhost.c +++ b/programs/conhost/conhost.c @@ -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;