]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #13002: Fix Visual Studio warning (not enough actual parameters).
authorStefan Krah <skrah@bytereef.org>
Wed, 21 Sep 2011 17:08:39 +0000 (19:08 +0200)
committerStefan Krah <skrah@bytereef.org>
Wed, 21 Sep 2011 17:08:39 +0000 (19:08 +0200)
Python/peephole.c

index 781498ecf25f2ed42acd1024e337b2c1546df24e..705622f18e9c1ec73731f9a5bcd595082c0c0f38 100644 (file)
@@ -66,7 +66,7 @@
     const_stack_top = -1; \
     } while(0)
 
-#define CONST_STACK_TOP(x) \
+#define CONST_STACK_TOP() \
     const_stack[const_stack_top]
 
 #define CONST_STACK_LASTN(i) \