Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b9146e commit 09233bdCopy full SHA for 09233bd
1 file changed
Modules/_zstd/compressor.c
@@ -74,7 +74,7 @@ zstd_contentsize_converter(PyObject *size, unsigned long long *p)
74
if (PyErr_ExceptionMatches(PyExc_OverflowError)) {
75
PyErr_Format(PyExc_ValueError,
76
"size argument should be a positive int less "
77
- "than %ull", ZSTD_CONTENTSIZE_ERROR);
+ "than %llu", ZSTD_CONTENTSIZE_ERROR);
78
return 0;
79
}
80
@@ -83,7 +83,7 @@ zstd_contentsize_converter(PyObject *size, unsigned long long *p)
83
*p = ZSTD_CONTENTSIZE_ERROR;
84
85
86
87
88
89
*p = pledged_size;
0 commit comments