From 472d280d8b9c3663f4e7a2a79b459c3c34825a72 Mon Sep 17 00:00:00 2001 From: Stefan Krah Date: Wed, 21 Sep 2011 19:08:39 +0200 Subject: Issue #13002: Fix Visual Studio warning (not enough actual parameters). --- Python/peephole.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/peephole.c b/Python/peephole.c index 781498e..705622f 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) \ -- cgit v0.12