Julian Foad <julianf...@apache.org> writes: > - ": %lu\n", > - (unsigned long)info->size)); > + ": %" APR_SIZE_T_FMT "\n", > + info->size));
I think that using APR_SIZE_T_FMT would still lead to the same issue with large file sizes in the 32-bit environment (where size_t is also 32 bit). Perhaps, the code should be using APR_OFF_T_FMT as the format specifier? (The apr_file_info_t.size value is an apr_off_t) Regards, Evgeny Kotkov