aboutsummaryrefslogtreecommitdiff
path: root/src/http/modules/ngx_http_log_module.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-09-11 13:57:50 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-09-11 13:57:50 +0000
commite0f1d0afcce898cbf2a40a7bad36e7faaa904702 (patch)
tree3bd156035e6b74a1a3338a9dc20e5ea7376d6720 /src/http/modules/ngx_http_log_module.c
parent526f36aab838d5fb12c4e003b145f2340254dca1 (diff)
downloadnginx-e0f1d0afcce898cbf2a40a7bad36e7faaa904702.tar.gz
nginx-e0f1d0afcce898cbf2a40a7bad36e7faaa904702.zip
style fix
Diffstat (limited to 'src/http/modules/ngx_http_log_module.c')
-rw-r--r--src/http/modules/ngx_http_log_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_log_module.c b/src/http/modules/ngx_http_log_module.c
index a5ace7d63..e1d99c05a 100644
--- a/src/http/modules/ngx_http_log_module.c
+++ b/src/http/modules/ngx_http_log_module.c
@@ -676,7 +676,7 @@ ngx_http_log_escape(u_char *dst, u_char *src, size_t size)
/* find the number of the characters to be escaped */
- n = 0;
+ n = 0;
for (i = 0; i < size; i++) {
if (escape[*src >> 5] & (1 << (*src & 0x1f))) {