mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Change rare occurrences of #if HAVE_LONG_LONG to #ifdef.
This commit is contained in:
parent
aa8d16761b
commit
3dbba6ec3a
2 changed files with 3 additions and 3 deletions
|
@ -291,7 +291,7 @@ do_mkvalue(p_format, p_va)
|
|||
case 'l':
|
||||
return PyInt_FromLong((long)va_arg(*p_va, long));
|
||||
|
||||
#if HAVE_LONG_LONG
|
||||
#ifdef HAVE_LONG_LONG
|
||||
case 'L':
|
||||
return PyLong_FromLongLong((LONG_LONG)va_arg(*p_va, LONG_LONG));
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue