changeset 8690:a9034b10dacc quic

HTTP/3: fixed format specifier.
author Roman Arutyunyan <arut@nginx.com>
date Mon, 01 Feb 2021 18:48:18 +0300
parents 6bd8ed493b85
children 250974f8f8e7
files src/http/v3/ngx_http_v3_request.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/v3/ngx_http_v3_request.c
+++ b/src/http/v3/ngx_http_v3_request.c
@@ -1034,7 +1034,7 @@ ngx_http_v3_request_body_filter(ngx_http
             if (max != -1 && (uint64_t) (max - rb->received) < st->length) {
                 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
                               "client intended to send too large "
-                              "body: %O+%uL bytes",
+                              "body: %O+%ui bytes",
                               rb->received, st->length);
 
                 return NGX_HTTP_REQUEST_ENTITY_TOO_LARGE;