aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoman Arutyunyan <arut@nginx.com>2021-02-01 18:48:18 +0300
committerRoman Arutyunyan <arut@nginx.com>2021-02-01 18:48:18 +0300
commita373d2851b33191e4f82cdec911914b04c4a4f23 (patch)
treeea86031b600c5b30d2ddd1434cd225f75d985e7e /src
parent6f3c821d1f28c433f778fcc843bb764e45194f5c (diff)
downloadnginx-a373d2851b33191e4f82cdec911914b04c4a4f23.tar.gz
nginx-a373d2851b33191e4f82cdec911914b04c4a4f23.zip
HTTP/3: fixed format specifier.
Diffstat (limited to 'src')
-rw-r--r--src/http/v3/ngx_http_v3_request.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/v3/ngx_http_v3_request.c b/src/http/v3/ngx_http_v3_request.c
index 1c17efadb..df58f383a 100644
--- 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_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;