comparison src/http/modules/ngx_http_image_filter_module.c @ 6480:f01ab2dbcfdc

Fixed logging.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 31 Mar 2016 02:33:57 +0300
parents 2cd019520210
children e4b00a021cea
comparison
equal deleted inserted replaced
6479:dc92298b1852 6480:f01ab2dbcfdc
735 735
736 return NGX_DECLINED; 736 return NGX_DECLINED;
737 } 737 }
738 738
739 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 739 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
740 "image size: %d x %d", width, height); 740 "image size: %d x %d", (int) width, (int) height);
741 741
742 ctx->width = width; 742 ctx->width = width;
743 ctx->height = height; 743 ctx->height = height;
744 744
745 return NGX_OK; 745 return NGX_OK;