From 5118a0a89d3e10840f50a440b6c248a38a7071b1 Mon Sep 17 00:00:00 2001 From: Sergey Kandaurov Date: Fri, 25 Aug 2017 17:11:29 +0300 Subject: Fixed typedef nxt_port_mmap_msg_t redefinition after 1b394e999c7c. Redefinition of typedef is a C11 feature. On older compilers that default to C99, such as clang 3.4.1 supplied with FreeBSD 10, this caused -Wtypedef-redefinition warnings. --- src/nginext/nxt_go_run_ctx.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/nginext/nxt_go_run_ctx.h b/src/nginext/nxt_go_run_ctx.h index 4ead1df5..62f6b133 100644 --- a/src/nginext/nxt_go_run_ctx.h +++ b/src/nginext/nxt_go_run_ctx.h @@ -14,7 +14,6 @@ typedef struct nxt_go_process_s nxt_go_process_t; -typedef struct nxt_port_mmap_msg_s nxt_port_mmap_msg_t; typedef struct nxt_go_msg_s nxt_go_msg_t; -- cgit