diff options
| author | Sergey Kandaurov <pluknet@nginx.com> | 2020-08-19 16:00:12 +0300 |
|---|---|---|
| committer | Sergey Kandaurov <pluknet@nginx.com> | 2020-08-19 16:00:12 +0300 |
| commit | 338c4015340f0eab37892c5a0449f86173b530a6 (patch) | |
| tree | e4bccb0b60cc4c30f1ec36c176be93fa87e1b13a /src | |
| parent | a4e06606c5fdfa846b21de5aa0b5916c55367a27 (diff) | |
| download | nginx-338c4015340f0eab37892c5a0449f86173b530a6.tar.gz nginx-338c4015340f0eab37892c5a0449f86173b530a6.tar.bz2 | |
QUIC: fixed format specifiers.
Diffstat (limited to 'src')
| -rw-r--r-- | src/event/ngx_event_quic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event/ngx_event_quic.c b/src/event/ngx_event_quic.c index 0cb573130..53054ab5f 100644 --- a/src/event/ngx_event_quic.c +++ b/src/event/ngx_event_quic.c @@ -3703,7 +3703,7 @@ ngx_quic_pto_handler(ngx_event_t *ev) } ngx_log_debug3(NGX_LOG_DEBUG_EVENT, c->log, 0, - "quic pto pnum:%ui pto_count:%ui level:%d", + "quic pto pnum:%uL pto_count:%ui level:%d", start->pnum, c->quic->pto_count, start->level); if (ngx_quic_resend_frames(c, ctx, start) != NGX_OK) { @@ -3783,7 +3783,7 @@ ngx_quic_detect_lost(ngx_connection_t *c) wait = start->last + thr - now; ngx_log_debug4(NGX_LOG_DEBUG_EVENT, c->log, 0, - "quic detect_lost pnum:%ui thr:%M wait:%i level:%d", + "quic detect_lost pnum:%uL thr:%M wait:%i level:%d", start->pnum, thr, (ngx_int_t) wait, start->level); if ((ngx_msec_int_t) wait > 0 |
