diff options
author | Stefan Krah <skrah@bytereef.org> | 2011-09-21 17:08:39 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2011-09-21 17:08:39 (GMT) |
commit | 472d280d8b9c3663f4e7a2a79b459c3c34825a72 (patch) | |
tree | f5d824feffb786a13ef3e60aebebdd6080e3b50e /Python/peephole.c | |
parent | fba2b6b454709c84a7d91a7ef55315d623583bb8 (diff) | |
download | cpython-472d280d8b9c3663f4e7a2a79b459c3c34825a72.zip cpython-472d280d8b9c3663f4e7a2a79b459c3c34825a72.tar.gz cpython-472d280d8b9c3663f4e7a2a79b459c3c34825a72.tar.bz2 |
Issue #13002: Fix Visual Studio warning (not enough actual parameters).
Diffstat (limited to 'Python/peephole.c')
-rw-r--r-- | Python/peephole.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) \ |