aboutsummaryrefslogtreecommitdiff
path: root/src/core/nginx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/nginx.c')
-rw-r--r--src/core/nginx.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c
index 579ee161b..ae68605ef 100644
--- a/src/core/nginx.c
+++ b/src/core/nginx.c
@@ -273,9 +273,11 @@ main(int argc, char *const *argv)
return 1;
}
- /* ngx_crc32_init() requires ngx_cacheline_size set in ngx_os_init() */
+ /*
+ * ngx_crc32_table_init() requires ngx_cacheline_size set in ngx_os_init()
+ */
- if (ngx_crc32_init() != NGX_OK) {
+ if (ngx_crc32_table_init() != NGX_OK) {
return 1;
}