diff options
author | Markus Armbruster <armbru@redhat.com> | 2010-02-24 14:37:14 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2010-03-16 16:58:32 +0100 |
commit | 65abca0a3441fb47024553e7676f6f3eef685a32 (patch) | |
tree | 0243c816446758d7fe0c199231513e3fbff3edf7 /qemu-error.h | |
parent | 827b08139c8ba97c18bda19e4893fdf26878b531 (diff) |
error: Include the program name in error messages to stderr
Diffstat (limited to 'qemu-error.h')
-rw-r--r-- | qemu-error.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qemu-error.h b/qemu-error.h index a1562aaa02..204dfb6a97 100644 --- a/qemu-error.h +++ b/qemu-error.h @@ -31,6 +31,7 @@ void loc_set_none(void); void error_vprintf(const char *fmt, va_list ap); void error_printf(const char *fmt, ...) __attribute__ ((format(printf, 1, 2))); void error_print_loc(void); +void error_set_progname(const char *argv0); void error_report(const char *fmt, ...) __attribute__ ((format(printf, 1, 2))); void qerror_report_internal(const char *file, int linenr, const char *func, const char *fmt, ...) |