From: David Goulet Date: Tue, 30 Sep 2025 20:22:02 +0000 (-0400) Subject: Fix log integer format X-Git-Tag: tor-0.4.8.19~6^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=df1dadd5b4a4f652fb338d14ae0f6277cdfc5d8f;p=thirdparty%2Ftor.git Fix log integer format Signed-off-by: David Goulet --- diff --git a/src/core/or/congestion_control_flow.c b/src/core/or/congestion_control_flow.c index fb26780627..f38b926de6 100644 --- a/src/core/or/congestion_control_flow.c +++ b/src/core/or/congestion_control_flow.c @@ -502,7 +502,7 @@ flow_control_decide_xoff(edge_connection_t *stream) /* If we've exceeded our XOFF grace period, we need to send an XOFF. */ log_info(LD_EDGE, "Sending XOFF: total-buffered=%" TOR_PRIuSZ - " xoff-limit=%d grace-period-dur=%" TOR_PRIuSZ "usec", + " xoff-limit=%d grace-period-dur=%" PRIu64 "usec", total_buffered, buffer_limit_xoff, now - stream->xoff_grace_period_start_usec); tor_trace(TR_SUBSYS(cc), TR_EV(flow_decide_xoff_sending), stream);