Skip to content

Commit 66de925

Browse files
committed
style: fixed minor coding style issues found by ngx-releng.
1 parent 31865d0 commit 66de925

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/ngx_http_memc_handler.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ ngx_http_memc_handler(ngx_http_request_t *r)
150150
return NGX_HTTP_INTERNAL_SERVER_ERROR;
151151
}
152152

153-
#if defined(nginx_version) && \
154-
((nginx_version >= 7063 && nginx_version < 8000) \
153+
#if defined(nginx_version) && \
154+
((nginx_version >= 7063 && nginx_version < 8000) \
155155
|| nginx_version >= 8007)
156156

157157
if (ngx_http_upstream_create(r) != NGX_OK) {

src/ngx_http_memc_util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#define NGX_UINT64_LEN (NGX_INT64_LEN - 1)
2020
#endif
2121

22-
#define ngx_http_memc_strcmp_const(a, b) \
22+
#define ngx_http_memc_strcmp_const(a, b) \
2323
ngx_strncmp(a, b, sizeof(b) - 1)
2424

2525
ngx_http_memc_cmd_t ngx_http_memc_parse_cmd(u_char *data, size_t len,

0 commit comments

Comments
 (0)