Skip to content

Commit 8d5c168

Browse files
committed
some code style fix
1 parent dcfc26f commit 8d5c168

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ngx_http_lua_shdict.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1263,8 +1263,8 @@ ngx_http_lua_shdict_incr(lua_State *L)
12631263

12641264
if ((size_t) sd->value_len == sizeof(double)) {
12651265
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, ctx->log, 0,
1266-
"lua shared dict incr: found old entry and value "
1267-
"size matched, reusing it");
1266+
"lua shared dict incr: found old entry and "
1267+
"value size matched, reusing it");
12681268

12691269
ngx_queue_remove(&sd->queue);
12701270
ngx_queue_insert_head(&ctx->sh->queue, &sd->queue);
@@ -1970,8 +1970,8 @@ ngx_http_lua_ffi_shdict_incr(ngx_shm_zone_t *zone, u_char *key,
19701970

19711971
if ((size_t) sd->value_len == sizeof(double)) {
19721972
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, ctx->log, 0,
1973-
"lua shared dict incr: found old entry and value "
1974-
"size matched, reusing it");
1973+
"lua shared dict incr: found old entry and "
1974+
"value size matched, reusing it");
19751975

19761976
ngx_queue_remove(&sd->queue);
19771977
ngx_queue_insert_head(&ctx->sh->queue, &sd->queue);

0 commit comments

Comments
 (0)