mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-27 21:40:49 +00:00
Replace gcc variadic macro extension with C99 version (missed one)
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
001faf3269
commit
6c7f4b47f7
@ -41,12 +41,12 @@ enum {
|
||||
#define DBGBIT(x) (1<<DEBUG_##x)
|
||||
static int debugflags = DBGBIT(TXERR) | DBGBIT(GENERAL);
|
||||
|
||||
#define DBGOUT(what, fmt, params...) do { \
|
||||
#define DBGOUT(what, fmt, ...) do { \
|
||||
if (debugflags & DBGBIT(what)) \
|
||||
fprintf(stderr, "e1000: " fmt, ##params); \
|
||||
fprintf(stderr, "e1000: " fmt, ## __VA_ARGS__); \
|
||||
} while (0)
|
||||
#else
|
||||
#define DBGOUT(what, fmt, params...) do {} while (0)
|
||||
#define DBGOUT(what, fmt, ...) do {} while (0)
|
||||
#endif
|
||||
|
||||
#define IOPORT_SIZE 0x40
|
||||
|
Loading…
Reference in New Issue
Block a user