diff options
author | Markus Armbruster <armbru@redhat.com> | 2010-03-22 10:29:05 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-03-27 14:30:38 +0100 |
commit | 0167f772d1505b79f2db2f1d3ccad54f2cbe5de1 (patch) | |
tree | 6dc1663a784d9b4d0313ae2742c16afc5b0112c1 /qemu-error.h | |
parent | 526f0ac1538378a561b629cb2f99a0349d48bc2f (diff) |
error: Move qerror_report() from qemu-error.[ch] to qerror.[ch]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'qemu-error.h')
-rw-r--r-- | qemu-error.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/qemu-error.h b/qemu-error.h index e63c6ab31d..a45609f8e7 100644 --- a/qemu-error.h +++ b/qemu-error.h @@ -37,11 +37,5 @@ void error_printf_unless_qmp(const char *fmt, ...) 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, ...) - __attribute__ ((format(printf, 4, 5))); - -#define qerror_report(fmt, ...) \ - qerror_report_internal(__FILE__, __LINE__, __func__, fmt, ## __VA_ARGS__) #endif |