diff options
author | Jaime <jaime.frio@gmail.com> | 2015-09-02 05:34:16 -0700 |
---|---|---|
committer | Jaime <jaime.frio@gmail.com> | 2015-09-02 05:34:16 -0700 |
commit | 3c26e2513d5639a27bfd4bc4df651b2416c8089b (patch) | |
tree | 77b2efbd254ede3b70117e7005935fb7803abedd /numpy | |
parent | 1bd6c31548f7557a5e9a0a5886bcedc975487d3b (diff) | |
parent | bcf827031d6f634e2f15c5e522957b542fb9d754 (diff) | |
download | numpy-3c26e2513d5639a27bfd4bc4df651b2416c8089b.tar.gz |
Merge pull request #6280 from pitrou/extint128_signed_char
BUG: enforce signed char in extint128
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/src/private/npy_extint128.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/private/npy_extint128.h b/numpy/core/src/private/npy_extint128.h index 6a35e736f..a887ff317 100644 --- a/numpy/core/src/private/npy_extint128.h +++ b/numpy/core/src/private/npy_extint128.h @@ -3,7 +3,7 @@ typedef struct { - char sign; + signed char sign; npy_uint64 lo, hi; } npy_extint128_t; |