# HG changeset patch # User Sergey Kandaurov # Date 1702683601 -14400 # Node ID cc16989c6d61385027c1ebfd43929f8369fa5f62 # Parent 6c8595b77e667bd58fd28186939ed820f2e55e0e QUIC: fixed format specifier after a6f79f044de5. diff --git a/src/event/quic/ngx_event_quic_migration.h b/src/event/quic/ngx_event_quic_migration.h --- a/src/event/quic/ngx_event_quic_migration.h +++ b/src/event/quic/ngx_event_quic_migration.h @@ -19,7 +19,7 @@ #define ngx_quic_path_dbg(c, msg, path) \ ngx_log_debug7(NGX_LOG_DEBUG_EVENT, c->log, 0, \ - "quic path seq:%uL %s tx:%O rx:%O valid:%ui st:%d mtu:%uz",\ + "quic path seq:%uL %s tx:%O rx:%O valid:%d st:%d mtu:%uz", \ path->seqnum, msg, path->sent, path->received, \ path->validated, path->state, path->mtu);