Skip to content

Commit 53521e7

Browse files
committed
Fixed ssize_t to Py_ssize_t
1 parent 94e0d21 commit 53521e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/decoder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ typedef struct CBORDecoderObject_ {
2222
PyObject *shareables;
2323
PyObject *stringref_namespace;
2424
PyObject *str_errors;
25-
ssize_t max_depth;
25+
Py_ssize_t max_depth;
2626
bool immutable;
2727
Py_ssize_t shared_index;
2828
Py_ssize_t decode_depth;

0 commit comments

Comments
 (0)