4 Jul
2016
4 Jul
'16
2:26 p.m.
On Tuesday 24 May 2016, you wrote:
This is the first report I've received, but the values indicated are suspiciously right over (2M = 2097152), which makes me think a 32bit issue is very possible.
I found. Format %zu should be used for size_t, but bufsz defined as off_t:
#ifdef _LARGEFILE_SOURCE off_t bufsz; #else long bufsz; #endif
%zu should be changed to %llu or size_t should be used for bufsz.
-- Regards, Sergey