diff options
author | Corey Minyard <cminyard@mvista.com> | 2014-10-08 07:11:54 -0500 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-10-09 15:36:15 +0200 |
commit | 5748e4c2be4f5c24c691f91328be02a9c4cb3063 (patch) | |
tree | 1badf2fbce035c5fb860833bda54b2a8ff3389f7 /include/qemu | |
parent | 35e4e96c4d5bfcf8a22930d8e99f7c8c44420062 (diff) | |
download | qemu-5748e4c2be4f5c24c691f91328be02a9c4cb3063.zip qemu-5748e4c2be4f5c24c691f91328be02a9c4cb3063.tar.gz qemu-5748e4c2be4f5c24c691f91328be02a9c4cb3063.tar.bz2 |
qemu-error: Add error_vreport()
Needed to nicely print socket error reports.
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/qemu')
-rw-r--r-- | include/qemu/error-report.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qemu/error-report.h b/include/qemu/error-report.h index 000eae3..7ab2355 100644 --- a/include/qemu/error-report.h +++ b/include/qemu/error-report.h @@ -38,6 +38,7 @@ void error_vprintf(const char *fmt, va_list ap) GCC_FMT_ATTR(1, 0); void error_printf(const char *fmt, ...) GCC_FMT_ATTR(1, 2); void error_printf_unless_qmp(const char *fmt, ...) GCC_FMT_ATTR(1, 2); void error_set_progname(const char *argv0); +void error_vreport(const char *fmt, va_list ap) GCC_FMT_ATTR(1, 0); void error_report(const char *fmt, ...) GCC_FMT_ATTR(1, 2); const char *error_get_progname(void); extern bool enable_timestamp_msg; |