Trac: Description: I was building tor-browser.git with --enabled-debug and -Werror=format and it revealed a format error in our #5282 (closed) patch. The line is
fprintf(stderr, "WTF-combine: Sent %lld/%lld bytes of %lld combined pipelined requests for host %s\n", alreadyPending+totalSent, totalAvailable, reqsSent, ci->Origin());
But the first three arguments after the format string are unsigned long integers, not long long integers.
to
I was building tor-browser.git with --enable-debug and -Werror=format and it revealed a format error in our #5282 (closed) patch. The line is
fprintf(stderr, "WTF-combine: Sent %lld/%lld bytes of %lld combined pipelined requests for host %s\n", alreadyPending+totalSent, totalAvailable, reqsSent, ci->Origin());
But the first three arguments after the format string are unsigned long integers, not long long integers.
Applied to tor-browser-52.1.1esr-7.0-1 and tor-browser-52.1.0esr-7.0-2 (commit 7aa5a5c8565273ea41a0c003160226f3229373f6 and e404251e7a4e86981a33be035e7fdb0b7ed42c3b), thanks.
Trac: Resolution: N/Ato fixed Status: needs_review to closed