Skip to content

Commit d333a36

Browse files
committed
minor coding style fixes.
1 parent f594493 commit d333a36

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/ngx_http_lua_module.c

+5-3
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,8 @@ ngx_http_lua_cleanup_vm(void *data)
738738
lua_State *L = data;
739739

740740
if (L != NULL) {
741-
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, ngx_cycle->log, 0, "lua close the global Lua VM");
741+
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, ngx_cycle->log, 0, "lua close the "
742+
"global Lua VM");
742743
lua_close(L);
743744
}
744745
}
@@ -752,10 +753,11 @@ ngx_http_lua_init_vm(ngx_conf_t *cf, ngx_http_lua_main_conf_t *lmcf)
752753
lua_State *L;
753754
ngx_uint_t i;
754755

755-
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, cf->log, 0, "lua initialize the global Lua VM");
756+
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, cf->log, 0, "lua initialize the "
757+
"global Lua VM");
756758

757759
ngx_http_lua_content_length_hash =
758-
ngx_http_lua_hash_literal("content-length");
760+
ngx_http_lua_hash_literal("content-length");
759761

760762
ngx_http_lua_location_hash = ngx_http_lua_hash_literal("location");
761763

0 commit comments

Comments
 (0)