Module: wine Branch: master Commit: 7ae55662a2a417eae913f4b459cfb900fb156769 URL: https://gitlab.winehq.org/wine/wine/-/commit/7ae55662a2a417eae913f4b459cfb90...
Author: Michael Stefaniuc mstefani@winehq.org Date: Thu Jun 22 18:56:52 2023 +0200
wow64win: Remove dangling space after newline in ERR() message.
---
dlls/wow64win/user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/wow64win/user.c b/dlls/wow64win/user.c index 59c3251fe92..73854225b7f 100644 --- a/dlls/wow64win/user.c +++ b/dlls/wow64win/user.c @@ -4357,6 +4357,6 @@ NTSTATUS WINAPI wow64_NtUserDisplayConfigGetDeviceInfo( UINT *args )
NTSTATUS WINAPI wow64___wine_send_input( UINT *args ) { - ERR( "not supported\n "); + ERR( "not supported\n" ); return 0; }