Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
is committed Jul 9, 2009
1 parent 2bb718d commit 46eb734
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/http/modules/ngx_http_limit_req_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit 46eb734

Please sign in to comment.