diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-07-09 14:03:12 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-07-09 14:03:12 +0000 |
commit | d6bb7ea5918053fc2f01d063a5df6d6fccdb2b31 (patch) | |
tree | deec7b433db5b6016a8b10900382ba691462e957 /src | |
parent | a4eb3f0e02541a3b64600e9f59339d4929ff6e84 (diff) | |
download | nginx-d6bb7ea5918053fc2f01d063a5df6d6fccdb2b31.tar.gz nginx-d6bb7ea5918053fc2f01d063a5df6d6fccdb2b31.zip |
style fix
Diffstat (limited to 'src')
-rw-r--r-- | src/http/modules/ngx_http_limit_req_module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/modules/ngx_http_limit_req_module.c b/src/http/modules/ngx_http_limit_req_module.c index 7f1685ac5..84e70b4f4 100644 --- a/src/http/modules/ngx_http_limit_req_module.c +++ b/src/http/modules/ngx_http_limit_req_module.c @@ -181,7 +181,7 @@ ngx_http_limit_req_handler(ngx_http_request_t *r) } ngx_log_debug3(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, - "limit_req: %i %ui.%03ui", rc, excess / 1000, excess % 1000); + "limit_req: %i %ui.%03ui", rc, excess / 1000, excess % 1000); if (rc == NGX_BUSY) { ngx_shmtx_unlock(&ctx->shpool->mutex); @@ -266,7 +266,7 @@ ngx_http_limit_req_delay(ngx_http_request_t *r) ngx_event_t *wev; ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, - "limit_req delay"); + "limit_req delay"); wev = r->connection->write; |