]> git.kaiwu.me - nginx.git/commitdiff
HTTP/3: fixed format specifier.
authorRoman Arutyunyan <arut@nginx.com>
Mon, 1 Feb 2021 15:48:18 +0000 (18:48 +0300)
committerRoman Arutyunyan <arut@nginx.com>
Mon, 1 Feb 2021 15:48:18 +0000 (18:48 +0300)
src/http/v3/ngx_http_v3_request.c

index 1c17efadb7a445bccf3ea6b388b626ce848c8481..df58f383a22d5916079754279941ce7209eec5fd 100644 (file)
@@ -1034,7 +1034,7 @@ ngx_http_v3_request_body_filter(ngx_http_request_t *r, ngx_chain_t *in)
             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;