wrc: Add a '\n' to a parser_warning() call.

Francois Gouget fgouget at free.fr
Wed Aug 26 03:54:45 CDT 2009


---
 tools/wrc/parser.l |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/wrc/parser.l b/tools/wrc/parser.l
index 8ed0445..3ea04de 100644
--- a/tools/wrc/parser.l
+++ b/tools/wrc/parser.l
@@ -638,7 +638,7 @@ static string_t *get_buffered_cstring(void)
             parser_error("String %s does not convert identically to Unicode and back in codepage %d. "
                     "Try using a Unicode string instead", str->str.cstr, current_codepage );
         if (check_valid_utf8( str, current_codepage ))
-            parser_warning( "string \"%s\" seems to be UTF-8 but codepage %u is in use.",
+            parser_warning( "string \"%s\" seems to be UTF-8 but codepage %u is in use.\n",
                             str->str.cstr, current_codepage );
         free_string( str );
         return str_w;
-- 
1.6.3.3



More information about the wine-patches mailing list