Problem
In zstd_contentsize_converter (Modules/_zstd/compressor.c), ValueError messages use the format specifier %ull when printing ZSTD_CONTENTSIZE_ERROR. The correct C99 format for unsigned long long is %llu; %ull is invalid.
Proposed fix
Replace %ull with %llu in both error paths.
Linked PRs
Problem
In
zstd_contentsize_converter(Modules/_zstd/compressor.c), ValueError messages use the format specifier%ullwhen printingZSTD_CONTENTSIZE_ERROR. The correct C99 format forunsigned long longis%llu;%ullis invalid.Proposed fix
Replace
%ullwith%lluin both error paths.Linked PRs