diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-05-13 17:53:17 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-05-13 17:53:17 +0000 |
commit | 001faf3269541f0231482e0fccc846f62f8930b2 (patch) | |
tree | a5a7b0143f3fd9d71e42eb03c4967f8763ec3501 /tests/linux-test.c | |
parent | 4cfce484c5d7e514c23689f3194055b5463d6054 (diff) | |
download | qemu-001faf3269541f0231482e0fccc846f62f8930b2.tar.gz qemu-001faf3269541f0231482e0fccc846f62f8930b2.tar.bz2 qemu-001faf3269541f0231482e0fccc846f62f8930b2.zip |
Replace gcc variadic macro extension with C99 version
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'tests/linux-test.c')
-rw-r--r-- | tests/linux-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/linux-test.c b/tests/linux-test.c index 19c0e1abb9..934b7eeefb 100644 --- a/tests/linux-test.c +++ b/tests/linux-test.c @@ -65,7 +65,7 @@ int __chk_error(const char *filename, int line, int ret) return ret; } -#define error(fmt, args...) error1(__FILE__, __LINE__, fmt, ##args) +#define error(fmt, ...) error1(__FILE__, __LINE__, fmt, ## __VA_ARGS__) #define chk_error(ret) __chk_error(__FILE__, __LINE__, (ret)) |