From a034694ccd3a0e66aa0e92579ea2372235eed570 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 2 Nov 2010 11:43:39 +0100 Subject: [PATCH] msxml3: Add a trailing '\n' to a FIXME() calls. --- dlls/msxml3/xslpattern.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msxml3/xslpattern.l b/dlls/msxml3/xslpattern.l index a4b8aa96a33..ae06c7a1ab9 100644 --- a/dlls/msxml3/xslpattern.l +++ b/dlls/msxml3/xslpattern.l @@ -147,7 +147,7 @@ ANY (.) "!" { SYM('!'); } {NCName} { STR(TOK_NCName); } {Number} { STR(TOK_Number); } -{ANY} { FIXME("Unexpected character '%s'.",yytext); } +{ANY} { FIXME("Unexpected character '%s'.\n",yytext); } %% -- 2.11.4.GIT