Skip to content

Commit 38927d1

Browse files
committed
fix printf format
1 parent b310c08 commit 38927d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

msgpack/unpack_template.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ static inline int unpack_execute(bool construct, unpack_context* ctx, const char
335335
goto _header_again;
336336

337337
default:
338-
PyErr_Format(PyExc_RuntimeError, "Invalid container type: %d", c->ct);
338+
PyErr_Format(PyExc_RuntimeError, "Invalid container type: %u", c->ct);
339339
goto _failed;
340340
}
341341

0 commit comments

Comments
 (0)