From: Francois Gouget <fgouget(a)codeweavers.com> --- tools/widl/parser.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/widl/parser.l b/tools/widl/parser.l index 1b16de63f0b..3ea03a7a26f 100644 --- a/tools/widl/parser.l +++ b/tools/widl/parser.l @@ -173,7 +173,7 @@ static int token_winrt( int token, const char *str, YYSTYPE *yylval ) static void winrt_enable( int ns_prefix ) { - if (!list_empty( &import_stack ) && !winrt_mode) error_loc( "WinRT IDL file imported in non-winrt mode." ); + if (!list_empty( &import_stack ) && !winrt_mode) error_loc( "WinRT IDL file imported in non-winrt mode.\n" ); use_abi_namespace = ns_prefix; winrt_mode = TRUE; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/2514