From: Roman Arutyunyan Date: Mon, 1 Feb 2021 15:48:18 +0000 (+0300) Subject: HTTP/3: fixed format specifier. X-Git-Tag: release-1.25.0~4^2~419 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=a373d2851b33191e4f82cdec911914b04c4a4f23;p=nginx.git HTTP/3: fixed format specifier. --- 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;