summaryrefslogtreecommitdiffstats
path: root/Python/getargs.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/getargs.c')
-rw-r--r--Python/getargs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/getargs.c b/Python/getargs.c
index 9fcfb9f..dc852ae 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -499,7 +499,7 @@ convertsimple1(arg, p_format, p_va)
break;
}
-#if HAVE_LONG_LONG
+#ifdef HAVE_LONG_LONG
case 'L': /* LONG_LONG */
{
LONG_LONG *p = va_arg( *p_va, LONG_LONG * );
@@ -1027,7 +1027,7 @@ skipitem(p_format, p_va)
break;
}
-#if HAVE_LONG_LONG
+#ifdef HAVE_LONG_LONG
case 'L': /* LONG_LONG int */
{
(void) va_arg(*p_va, LONG_LONG *);