Closed viccie30 closed 1 year ago
Using %zu for size_t is C99, so should be portable. suseconds_t is not required to be either 32 or 64 bits, so use an explicit cast to long.
%zu
suseconds_t
long
Thanks!
Tagged v1.4.2.5 with this fix included.
Using
%zu
for size_t is C99, so should be portable.suseconds_t
is not required to be either 32 or 64 bits, so use an explicit cast tolong
.