diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-11-02 15:32:46 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-11-02 15:32:46 +0300 |
commit | ec411569e77fc28a9f6641e567c7689fba9bc942 (patch) | |
tree | e5eb55f2ef7ee87a608f8814e69180613ca2de9b /src/nxt_port_socket.c | |
parent | eb5c49ead9f08c424679069a9c5b99014f76b478 (diff) | |
download | unit-ec411569e77fc28a9f6641e567c7689fba9bc942.tar.gz unit-ec411569e77fc28a9f6641e567c7689fba9bc942.tar.bz2 |
Fixing build on Solaris.
Diffstat (limited to 'src/nxt_port_socket.c')
-rw-r--r-- | src/nxt_port_socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_port_socket.c b/src/nxt_port_socket.c index a430eacf..08f87e84 100644 --- a/src/nxt_port_socket.c +++ b/src/nxt_port_socket.c @@ -572,7 +572,7 @@ nxt_port_lvlhsh_frag_alloc(void *ctx, size_t size) static void nxt_port_lvlhsh_frag_free(void *ctx, void *p) { - return nxt_mp_free(ctx, p); + nxt_mp_free(ctx, p); } |