diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2018-09-03 19:17:01 +0300 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2018-09-03 19:17:01 +0300 |
commit | 07c3e79b64c793facb22ec498dd0fc1437645e55 (patch) | |
tree | e2987c7c941e2993ff40ecfb17ba8fba32033e9f /src | |
parent | 09cb553c7fb7b1d137db6a2a7f438bb6b6653217 (diff) | |
download | nginx-07c3e79b64c793facb22ec498dd0fc1437645e55.tar.gz nginx-07c3e79b64c793facb22ec498dd0fc1437645e55.zip |
Uwsgi: style.
Diffstat (limited to 'src')
-rw-r--r-- | src/http/modules/ngx_http_uwsgi_module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/modules/ngx_http_uwsgi_module.c b/src/http/modules/ngx_http_uwsgi_module.c index 0959133d1..8411cfd8d 100644 --- a/src/http/modules/ngx_http_uwsgi_module.c +++ b/src/http/modules/ngx_http_uwsgi_module.c @@ -954,8 +954,8 @@ ngx_http_uwsgi_create_request(ngx_http_request_t *r) #if 0 /* allow custom uwsgi packet */ if (len > 0 && len < 2) { - ngx_log_error (NGX_LOG_ALERT, r->connection->log, 0, - "uwsgi request is too little: %uz", len); + ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0, + "uwsgi request is too little: %uz", len); return NGX_ERROR; } #endif |