Replace gcc variadic macro extension with C99 version (missed one)

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
Blue Swirl 2009-05-13 18:09:29 +00:00
parent 001faf3269
commit 6c7f4b47f7

View File

@ -41,12 +41,12 @@ enum {
#define DBGBIT(x) (1<<DEBUG_##x) #define DBGBIT(x) (1<<DEBUG_##x)
static int debugflags = DBGBIT(TXERR) | DBGBIT(GENERAL); static int debugflags = DBGBIT(TXERR) | DBGBIT(GENERAL);
#define DBGOUT(what, fmt, params...) do { \ #define DBGOUT(what, fmt, ...) do { \
if (debugflags & DBGBIT(what)) \ if (debugflags & DBGBIT(what)) \
fprintf(stderr, "e1000: " fmt, ##params); \ fprintf(stderr, "e1000: " fmt, ## __VA_ARGS__); \
} while (0) } while (0)
#else #else
#define DBGOUT(what, fmt, params...) do {} while (0) #define DBGOUT(what, fmt, ...) do {} while (0)
#endif #endif
#define IOPORT_SIZE 0x40 #define IOPORT_SIZE 0x40