diff src/event/ngx_event_quic.c @ 8565:0e12c4aca3ab quic

QUIC: fixed clang-ast asserts.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 01 Oct 2020 12:09:47 +0100
parents b52b2a33b0e5
children 9588a2782c62
line wrap: on
line diff
--- a/src/event/ngx_event_quic.c
+++ b/src/event/ngx_event_quic.c
@@ -1237,7 +1237,7 @@ ngx_quic_init_connection(ngx_connection_
         }
 
         ngx_quic_hexdump(c->log, "quic stateless reset token",
-                         qc->tp.sr_token, NGX_QUIC_SR_TOKEN_LEN);
+                         qc->tp.sr_token, (size_t) NGX_QUIC_SR_TOKEN_LEN);
     }
 
     len = ngx_quic_create_transport_params(NULL, NULL, &qc->tp, &clen);