An unfortunately ugly example:
apr_time_t now;
apr_snprintf(..., "microsecs in hex: %" APR_UINT64_T_HEX_FMT, (apr_uint64_t))
err, that last line should be
(apr_uint64_t)now)
An unfortunately ugly example:
apr_time_t now;
apr_snprintf(..., "microsecs in hex: %" APR_UINT64_T_HEX_FMT, (apr_uint64_t))
err, that last line should be
(apr_uint64_t)now)