Commit bda70216 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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: 's avatarFrancois Gouget <fgouget@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 064c7bdb
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment