diff options
author | INADA Naoki <songofacandy@gmail.com> | 2015-01-07 12:10:42 +0900 |
---|---|---|
committer | INADA Naoki <songofacandy@gmail.com> | 2015-01-07 12:10:42 +0900 |
commit | 9624a2aca31ae94a92e2fc7225a12bd4875e3591 (patch) | |
tree | 4c9592a72b73480d9a23e4d5cb2dc9d8dd5650db /msgpack/pack.h | |
parent | 593887025ea73acdd94fed93480011fb26e0aca8 (diff) | |
download | msgpack-python-fix-windows.tar.gz |
Fix build failuer for Python 2.7 on Windows.fix-windows
Remove int8_t usage.
Diffstat (limited to 'msgpack/pack.h')
-rw-r--r-- | msgpack/pack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/msgpack/pack.h b/msgpack/pack.h index a71c87b..971065c 100644 --- a/msgpack/pack.h +++ b/msgpack/pack.h @@ -71,7 +71,7 @@ static inline int msgpack_pack_raw(msgpack_packer* pk, size_t l); static inline int msgpack_pack_bin(msgpack_packer* pk, size_t l); static inline int msgpack_pack_raw_body(msgpack_packer* pk, const void* b, size_t l); -static inline int msgpack_pack_ext(msgpack_packer* pk, int8_t typecode, size_t l); +static inline int msgpack_pack_ext(msgpack_packer* pk, char typecode, size_t l); static inline int msgpack_pack_write(msgpack_packer* pk, const char *data, size_t l) { |