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>
This commit is contained in:
parent
064c7bdbb4
commit
bda70216a6
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue