diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-19 01:12:21 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-19 01:12:21 (GMT) |
commit | ac965ca16c59308fdafbeff9e36dfaf06505a512 (patch) | |
tree | 52f3e070857632405fff16657627ba2fe3f527eb /Include/pythread.h | |
parent | 41e35f37edf760898f9c440ac17a4c542c9d88a1 (diff) | |
download | cpython-ac965ca16c59308fdafbeff9e36dfaf06505a512.zip cpython-ac965ca16c59308fdafbeff9e36dfaf06505a512.tar.gz cpython-ac965ca16c59308fdafbeff9e36dfaf06505a512.tar.bz2 |
stop using Py_LL and Py_ULL
Diffstat (limited to 'Include/pythread.h')
-rw-r--r-- | Include/pythread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/pythread.h b/Include/pythread.h index 459a5d5..dd681be 100644 --- a/Include/pythread.h +++ b/Include/pythread.h @@ -42,9 +42,9 @@ PyAPI_FUNC(int) PyThread_acquire_lock(PyThread_type_lock, int); /* In the NT API, the timeout is a DWORD and is expressed in milliseconds */ #if defined (NT_THREADS) -#if (Py_LL(0xFFFFFFFF) * 1000 < PY_TIMEOUT_MAX) +#if 0xFFFFFFFFLL * 1000 < PY_TIMEOUT_MAX #undef PY_TIMEOUT_MAX -#define PY_TIMEOUT_MAX (Py_LL(0xFFFFFFFF) * 1000) +#define PY_TIMEOUT_MAX (0xFFFFFFFFLL * 1000) #endif #endif |