diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2007-06-09 07:58:05 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2007-06-09 07:58:05 (GMT) |
commit | 71d11d30c425f25ac4c3189e91c1a3ee840e6aa5 (patch) | |
tree | 874e5dc3858bb85f4b27f8102ecd97cc89bdec52 /PC | |
parent | 6371cd81775298dfd5dbbffbc172f3e5ddf6b5ea (diff) | |
download | cpython-71d11d30c425f25ac4c3189e91c1a3ee840e6aa5.zip cpython-71d11d30c425f25ac4c3189e91c1a3ee840e6aa5.tar.gz cpython-71d11d30c425f25ac4c3189e91c1a3ee840e6aa5.tar.bz2 |
Fix Windows build.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/pyconfig.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 314fbf1..4597db0 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -277,7 +277,7 @@ typedef int pid_t; # define PY_LONG_LONG __int64 # define PY_LLONG_MAX LLONG_MAX # define PY_LLONG_MIN LLONG_MIN -# define PY_ULLONG_MIN ULLONG_MIN +# define PY_ULLONG_MAX ULLONG_MAX #endif /* For Windows the Python core is in a DLL by default. Test |