From: Vladimir Homutov Date: Thu, 5 Mar 2020 14:51:22 +0000 (+0300) Subject: Fixed format specifiers. X-Git-Tag: release-1.25.0~4^2~914 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/postgres_fdw.c?a=commitdiff_plain;h=08691ef3d496a716543299ecafa7055540f80caa;p=nginx.git Fixed format specifiers. --- diff --git a/src/event/ngx_event_quic.c b/src/event/ngx_event_quic.c index 233a4610b..2d36863b4 100644 --- a/src/event/ngx_event_quic.c +++ b/src/event/ngx_event_quic.c @@ -1217,7 +1217,7 @@ ngx_quic_new_connection(ngx_connection_t *c, ngx_ssl_t *ssl, ngx_buf_t *b) if ((pkt.flags & 0xf0) != NGX_QUIC_PKT_INITIAL) { ngx_log_error(NGX_LOG_INFO, c->log, 0, - "invalid initial packet: 0x%x", pkt.flags); + "invalid initial packet: 0x%xi", pkt.flags); return NGX_ERROR; } @@ -1393,7 +1393,7 @@ ngx_quic_handshake_input(ngx_connection_t *c, ngx_buf_t *b) if ((pkt.flags & 0xf0) != NGX_QUIC_PKT_HANDSHAKE) { ngx_log_error(NGX_LOG_INFO, c->log, 0, - "invalid packet type: 0x%x", pkt.flags); + "invalid packet type: 0x%xi", pkt.flags); return NGX_ERROR; }