if (PyErr_ExceptionMatches(PyExc_OverflowError)) {
PyErr_Format(PyExc_ValueError,
"size argument should be a positive int less "
- "than %ull", ZSTD_CONTENTSIZE_ERROR);
+ "than %llu", ZSTD_CONTENTSIZE_ERROR);
return 0;
}
return 0;
*p = ZSTD_CONTENTSIZE_ERROR;
PyErr_Format(PyExc_ValueError,
"size argument should be a positive int less "
- "than %ull", ZSTD_CONTENTSIZE_ERROR);
+ "than %llu", ZSTD_CONTENTSIZE_ERROR);
return 0;
}
*p = pledged_size;