summaryrefslogtreecommitdiffhomepage
path: root/src/go/unit/nxt_go_port_memory.c
diff options
context:
space:
mode:
authorMax Romanov <max.romanov@nginx.com>2017-10-19 18:20:08 +0300
committerMax Romanov <max.romanov@nginx.com>2017-10-19 18:20:08 +0300
commitc8a8a7c2120e276777f97dcee6d489788417792a (patch)
treeee4c2a16567beecd382a0c61672b8812b10f764f /src/go/unit/nxt_go_port_memory.c
parentf9f852008fcbe94c099d9d42cef010d74fea2574 (diff)
downloadunit-c8a8a7c2120e276777f97dcee6d489788417792a.tar.gz
unit-c8a8a7c2120e276777f97dcee6d489788417792a.tar.bz2
Fixing Go package build.
Go package build was broken by change 365:28b2a468be43.
Diffstat (limited to 'src/go/unit/nxt_go_port_memory.c')
-rw-r--r--src/go/unit/nxt_go_port_memory.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/go/unit/nxt_go_port_memory.c b/src/go/unit/nxt_go_port_memory.c
index 310e17cb..2e970347 100644
--- a/src/go/unit/nxt_go_port_memory.c
+++ b/src/go/unit/nxt_go_port_memory.c
@@ -32,7 +32,7 @@ nxt_go_new_port_mmap(nxt_go_process_t *process, nxt_port_id_t id)
char name[64];
nxt_fd_t fd;
nxt_port_msg_t port_msg;
- nxt_port_mmap_t *port_mmap;
+ nxt_go_port_mmap_t *port_mmap;
nxt_port_mmap_header_t *hdr;
fd = -1;
@@ -162,8 +162,8 @@ nxt_port_mmap_header_t *
nxt_go_port_mmap_get(nxt_go_process_t *process, nxt_port_id_t port_id,
nxt_chunk_id_t *c)
{
- nxt_port_mmap_t *port_mmap;
- nxt_port_mmap_t *end_port_mmap;
+ nxt_go_port_mmap_t *port_mmap;
+ nxt_go_port_mmap_t *end_port_mmap;
nxt_port_mmap_header_t *hdr;
port_mmap = NULL;