From c956c4c87f1bd84ff0b3b1e78b4d8bd9487134c4 Mon Sep 17 00:00:00 2001 From: Artem Serebriyskiy Date: Fri, 24 May 2013 13:37:00 +0400 Subject: [PATCH] Fix %arg in Lib/attribute.i --- Lib/attribute.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/attribute.i b/Lib/attribute.i index 0cc3ff1a3..d580dbfe9 100644 --- a/Lib/attribute.i +++ b/Lib/attribute.i @@ -11,7 +11,7 @@ #define %attribute_exception(code,msg) printf("%s\n",msg) #ifndef %arg -#define %arg(x) x +#define %arg(x...) x #endif #ifndef %mangle