summaryrefslogtreecommitdiff
path: root/Python/peephole.c
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2011-09-21 19:08:39 +0200
committerStefan Krah <skrah@bytereef.org>2011-09-21 19:08:39 +0200
commit4e7a29bf47bd58f536731ef33916b6518898760f (patch)
tree2ae442b6b590b15d24eb64d2bdae729fcf2005cf /Python/peephole.c
parentad8a98579d35af73164374a8dc5f95430bdf7ade (diff)
downloadcpython-4e7a29bf47bd58f536731ef33916b6518898760f.tar.gz
Issue #13002: Fix Visual Studio warning (not enough actual parameters).
Diffstat (limited to 'Python/peephole.c')
-rw-r--r--Python/peephole.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/peephole.c b/Python/peephole.c
index 781498ecf2..705622f18e 100644
--- a/Python/peephole.c
+++ b/Python/peephole.c
@@ -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) \