diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2023-12-16 03:40:01 +0400 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2023-12-16 03:40:01 +0400 |
commit | 5e743242849f4724392c742b59e3757e5c7ea499 (patch) | |
tree | cfbe05f1a793da61024d6c1af7c04a769e3b3af4 /src | |
parent | 386329d3cf207e0a52056d195fefb4e85dfc8c26 (diff) | |
download | nginx-5e743242849f4724392c742b59e3757e5c7ea499.tar.gz nginx-5e743242849f4724392c742b59e3757e5c7ea499.zip |
QUIC: fixed format specifier after a6f79f044de5.
Diffstat (limited to 'src')
-rw-r--r-- | src/event/quic/ngx_event_quic_migration.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/quic/ngx_event_quic_migration.h b/src/event/quic/ngx_event_quic_migration.h index 9587882f2..270c572ed 100644 --- 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); |