From 8bfdc84a1994274e5d7ee44c4ee3892666f4cdc7 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Mon, 5 Oct 2020 23:22:44 +0200 Subject: [PATCH] conhost: Correct whitespace placement in a TRACE(). Signed-off-by: Michael Stefaniuc Signed-off-by: Alexandre Julliard --- 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 ac0e22b4c42..a54238c80f6 100644 --- a/programs/conhost/conhost.c +++ b/programs/conhost/conhost.c @@ -2477,7 +2477,7 @@ static NTSTATUS console_input_ioctl( struct console *console, unsigned int code, case IOCTL_CONDRV_PEEK: { void *result; - TRACE( "peek\n "); + TRACE( "peek\n" ); if (in_size) return STATUS_INVALID_PARAMETER; ensure_tty_input_thread( console ); *out_size = min( *out_size, console->record_count * sizeof(INPUT_RECORD) );