]> Git Repo - qemu.git/commitdiff
target-cris: Fix typo in D_LOG() macro
authorAndreas Färber <[email protected]>
Thu, 24 Jan 2013 09:51:47 +0000 (10:51 +0100)
committerEdgar E. Iglesias <[email protected]>
Thu, 24 Jan 2013 10:28:15 +0000 (11:28 +0100)
It's __VA_ARGS__. Fixes the build with CRIS_[OP_]HELPER_DEBUG defined.

Broken since r6338 / 93fcfe39a0383377e647b821c9f165fd927cd4e0 (Convert
references to logfile/loglevel to use qemu_log*() macros).

Cc: Eduardo Habkost <[email protected]>
Signed-off-by: Andreas Färber <[email protected]>
Signed-off-by: Edgar E. Iglesias <[email protected]>
target-cris/helper.c
target-cris/op_helper.c

index 8407a6d880f06c5187e15a4f2174718d48d5211b..6e75e9819e7eac3b38df3f1559ab68aa5d415528 100644 (file)
@@ -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)
index 79bff386633ab9c56dea1a01a91dfd81a22effb4..0f6a1eeb0acb31583ad40ab0636bf04910bbc031 100644 (file)
@@ -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)
This page took 0.027941 seconds and 4 git commands to generate.