Skip to content

Commit fc983a5

Browse files
fixed indent.
1 parent da92616 commit fc983a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ngx_http_lua_misc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ ngx_http_lua_ffi_set_resp_status_and_reason(ngx_http_request_t *r, int status,
106106
reason_len += 5; /* "ddd <reason>\0" */
107107
buf = ngx_palloc(r->pool, reason_len);
108108
if (buf == NULL) {
109-
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "no memory");
110-
return NGX_DECLINED;
109+
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "no memory");
110+
return NGX_DECLINED;
111111
}
112112

113113
ngx_snprintf(buf, reason_len, "%d %s", status, reason);

0 commit comments

Comments
 (0)