mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
target-cris: Fix typo in D_LOG() macro
It's __VA_ARGS__. Fixes the build with CRIS_[OP_]HELPER_DEBUG defined.
Broken since r6338 / 93fcfe39a0
(Convert
references to logfile/loglevel to use qemu_log*() macros).
Cc: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
This commit is contained in:
parent
9fc7577af5
commit
3f668b6c5d
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@
|
|||
|
||||
#ifdef CRIS_HELPER_DEBUG
|
||||
#define D(x) x
|
||||
#define D_LOG(...) qemu_log(__VA__ARGS__)
|
||||
#define D_LOG(...) qemu_log(__VA_ARGS__)
|
||||
#else
|
||||
#define D(x)
|
||||
#define D_LOG(...) do { } while (0)
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
|
||||
#ifdef CRIS_OP_HELPER_DEBUG
|
||||
#define D(x) x
|
||||
#define D_LOG(...) qemu_log(__VA__ARGS__)
|
||||
#define D_LOG(...) qemu_log(__VA_ARGS__)
|
||||
#else
|
||||
#define D(x)
|
||||
#define D_LOG(...) do { } while (0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue