Commit e248754f authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] fix the build for old gcc's

Older gcc's do not support that form of ellipsis in a macro.
parent e2a6cbc0
......@@ -24,7 +24,7 @@
#if 0
#define DEBUGP printk
#else
#define DEBUGP(fmt , ...)
#define DEBUGP(fmt, a...)
#endif
static int parse_one(char *param,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment