From e09741ba06fd4870d90be6df7c59cd4e6da8a8b0 Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Tue, 20 Aug 2013 20:47:16 +0400 Subject: Format specifier fixes in error logging. --- src/os/unix/ngx_channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/os/unix/ngx_channel.c') diff --git a/src/os/unix/ngx_channel.c b/src/os/unix/ngx_channel.c index 536a9ed4b..8e9069660 100644 --- a/src/os/unix/ngx_channel.c +++ b/src/os/unix/ngx_channel.c @@ -144,7 +144,7 @@ ngx_read_channel(ngx_socket_t s, ngx_channel_t *ch, size_t size, ngx_log_t *log) if ((size_t) n < sizeof(ngx_channel_t)) { ngx_log_error(NGX_LOG_ALERT, log, 0, - "recvmsg() returned not enough data: %uz", n); + "recvmsg() returned not enough data: %z", n); return NGX_ERROR; } -- cgit v1.2.3