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

This commit is contained in:
Francois Gouget 2009-08-26 10:54:45 +02:00 committed by Alexandre Julliard
parent 6369d7a08b
commit b4e7155c1a
1 changed files with 1 additions and 1 deletions

View File

@ -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. " 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 ); "Try using a Unicode string instead", str->str.cstr, current_codepage );
if (check_valid_utf8( str, 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 ); str->str.cstr, current_codepage );
free_string( str ); free_string( str );
return str_w; return str_w;