diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-08 16:25:03 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-08 16:25:03 (GMT) |
commit | c235af47f17d2dab282237a7e49445d234f7df7e (patch) | |
tree | 3b7ad8e33e148614fd8791e93a29374cae66de0b /Modules/_ctypes | |
parent | beb0f1d425458ef9cb18a4eb2b4ffe87aeb2662b (diff) | |
download | cpython-c235af47f17d2dab282237a7e49445d234f7df7e.zip cpython-c235af47f17d2dab282237a7e49445d234f7df7e.tar.gz cpython-c235af47f17d2dab282237a7e49445d234f7df7e.tar.bz2 |
fix a PY_LONG_LONG straggler
Diffstat (limited to 'Modules/_ctypes')
-rw-r--r-- | Modules/_ctypes/ctypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ctypes/ctypes.h b/Modules/_ctypes/ctypes.h index b71f139..5d3b966 100644 --- a/Modules/_ctypes/ctypes.h +++ b/Modules/_ctypes/ctypes.h @@ -31,7 +31,7 @@ union value { long l; float f; double d; - PY_LONG_LONG ll; + long long ll; long double D; }; |