Skip to content

Commit 6284dee

Browse files
Update python-zstd.c
Format for long long int
1 parent 2c49f13 commit 6284dee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python-zstd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ static PyObject *py_zstd_uncompress(PyObject* self, PyObject *args)
206206
error = 1;
207207
// }
208208
} else if (cSize != dest_size) {
209-
PyErr_Format(ZstdError, "Decompression error: length mismatch -> decomp %lu != %lu [header]", (uint64_t)cSize, dest_size);
209+
PyErr_Format(ZstdError, "Decompression error: length mismatch -> decomp %llu != %llu [header]", (uint64_t)cSize, dest_size);
210210
error = 1;
211211
}
212212
} else {

0 commit comments

Comments
 (0)