wpp: Standardize the error and warning messages.

Use lowercase 'error:' and 'warning:' prefixes like other tools so the
messages can be recognized by standard tools.

Signed-off-by: Francois Gouget <fgouget@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Francois Gouget 2020-04-02 11:09:37 +02:00 committed by Alexandre Julliard
parent 064c7bdbb4
commit bda70216a6
1 changed files with 2 additions and 2 deletions

View File

@ -692,7 +692,7 @@ int ppy_error(const char *s, ...)
{
va_list ap;
va_start(ap, s);
generic_msg(s, "Error", ppy_text, ap);
generic_msg(s, "error", ppy_text, ap);
va_end(ap);
exit(1);
}
@ -701,7 +701,7 @@ int ppy_warning(const char *s, ...)
{
va_list ap;
va_start(ap, s);
generic_msg(s, "Warning", ppy_text, ap);
generic_msg(s, "warning", ppy_text, ap);
va_end(ap);
return 0;
}