File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ from cpython cimport *
55from libc.stdlib cimport *
66from libc.string cimport *
77from libc.limits cimport *
8- from libc.stdint cimport int8_t
98
109from msgpack.exceptions import PackValueError
1110from msgpack import ExtType
@@ -32,7 +31,7 @@ cdef extern from "pack.h":
3231 int msgpack_pack_raw(msgpack_packer* pk, size_t l)
3332 int msgpack_pack_bin(msgpack_packer* pk, size_t l)
3433 int msgpack_pack_raw_body(msgpack_packer* pk, char * body, size_t l)
35- int msgpack_pack_ext(msgpack_packer* pk, int8_t typecode, size_t l)
34+ int msgpack_pack_ext(msgpack_packer* pk, char typecode, size_t l)
3635
3736cdef int DEFAULT_RECURSE_LIMIT= 511
3837
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ static inline int msgpack_pack_raw(msgpack_packer* pk, size_t l);
7171static inline int msgpack_pack_bin (msgpack_packer * pk , size_t l );
7272static inline int msgpack_pack_raw_body (msgpack_packer * pk , const void * b , size_t l );
7373
74- static inline int msgpack_pack_ext (msgpack_packer * pk , int8_t typecode , size_t l );
74+ static inline int msgpack_pack_ext (msgpack_packer * pk , char typecode , size_t l );
7575
7676static inline int msgpack_pack_write (msgpack_packer * pk , const char * data , size_t l )
7777{
You can’t perform that action at this time.
0 commit comments