diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2009-12-22 10:45:29 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2009-12-22 10:45:29 +0000 |
| commit | ec0655c0ceb34777b1fa80eb6ddf0a6896642fb5 (patch) | |
| tree | c34ae4c76a73aba220f0326b843f3cd02dbac3ea /src | |
| parent | a9d26d2e19c9abb6345dc24d7f59694356e76c58 (diff) | |
| download | nginx-ec0655c0ceb34777b1fa80eb6ddf0a6896642fb5.tar.gz nginx-ec0655c0ceb34777b1fa80eb6ddf0a6896642fb5.tar.bz2 | |
style fix
Diffstat (limited to 'src')
| -rw-r--r-- | src/http/modules/ngx_http_image_filter_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_image_filter_module.c b/src/http/modules/ngx_http_image_filter_module.c index 9a4dafe05..b94a62df9 100644 --- a/src/http/modules/ngx_http_image_filter_module.c +++ b/src/http/modules/ngx_http_image_filter_module.c @@ -617,7 +617,7 @@ ngx_http_image_size(ngx_http_request_t *r, ngx_http_image_filter_ctx_t *ctx) if (p[0] == 0xff && p[1] != 0xff) { ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, - "JPEG: %02xd %02xd", *p, *(p + 1)); + "JPEG: %02xd %02xd", p[0], p[1]); p++; |
