comparison src/http/modules/ngx_http_image_filter_module.c @ 3393:fbf6d83ce288

style fix
author Igor Sysoev <igor@sysoev.ru>
date Tue, 22 Dec 2009 10:45:29 +0000
parents e6f5cb5eff8b
children 11965c62b92c
comparison
equal deleted inserted replaced
3392:d2a4c6aa9b9a 3393:fbf6d83ce288
615 while (p < last) { 615 while (p < last) {
616 616
617 if (p[0] == 0xff && p[1] != 0xff) { 617 if (p[0] == 0xff && p[1] != 0xff) {
618 618
619 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 619 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
620 "JPEG: %02xd %02xd", *p, *(p + 1)); 620 "JPEG: %02xd %02xd", p[0], p[1]);
621 621
622 p++; 622 p++;
623 623
624 if (*p == 0xc0 || *p == 0xc1 || *p == 0xc2 || *p == 0xc3 624 if (*p == 0xc0 || *p == 0xc1 || *p == 0xc2 || *p == 0xc3
625 || *p == 0xc9 || *p == 0xca || *p == 0xcb) 625 || *p == 0xc9 || *p == 0xca || *p == 0xcb)