Michael Stefaniuc : conhost: Correct whitespace placement in a TRACE().

Alexandre Julliard julliard at winehq.org
Tue Oct 6 15:33:09 CDT 2020


Module: wine
Branch: master
Commit: 8bfdc84a1994274e5d7ee44c4ee3892666f4cdc7
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=8bfdc84a1994274e5d7ee44c4ee3892666f4cdc7

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Mon Oct  5 23:22:44 2020 +0200

conhost: Correct whitespace placement in a TRACE().

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 ac0e22b4c4..a54238c80f 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) );




More information about the wine-cvs mailing list