Skip to content

Commit 91b7f4d

Browse files
committed
style: minor fixes according to the review.
1 parent 057b916 commit 91b7f4d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/ngx_http_lua_directive.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1299,9 +1299,10 @@ ngx_http_lua_gen_chunk_name(ngx_conf_t *cf, const char *tag, size_t tag_len,
12991299
found:
13001300

13011301
p = ngx_snprintf(out, len, "=%*s(%*s:%d)%Z",
1302-
tag_len, tag, cf->conf_file->file.name.data
1303-
+ cf->conf_file->file.name.len - p,
1304-
p, cf->conf_file->line);
1302+
tag_len, tag, cf->conf_file->file.name.data
1303+
+ cf->conf_file->file.name.len - p,
1304+
p, cf->conf_file->line);
1305+
13051306
*chunkname_len = p - out - 1; /* exclude the trailing '\0' byte */
13061307

13071308
return out;

0 commit comments

Comments
 (0)