diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-06-26 19:58:43 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-06-26 19:58:43 +0300 |
commit | b53b7b0413d4898b9bd73cd30e8d433b8893a66d (patch) | |
tree | 984fba281456d62f0803ab9b726a448ad7fba6d9 /src/nxt_conf_json.c | |
parent | 9399a04121c054433ba3247523487d94ba9db2ba (diff) | |
download | unit-b53b7b0413d4898b9bd73cd30e8d433b8893a66d.tar.gz unit-b53b7b0413d4898b9bd73cd30e8d433b8893a66d.tar.bz2 |
Build on Solaris 11 fixed.
Diffstat (limited to 'src/nxt_conf_json.c')
-rw-r--r-- | src/nxt_conf_json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_conf_json.c b/src/nxt_conf_json.c index 8117b679..2117b468 100644 --- a/src/nxt_conf_json.c +++ b/src/nxt_conf_json.c @@ -863,7 +863,7 @@ nxt_conf_json_object_hash_alloc(void *data, size_t size) static void nxt_conf_json_object_hash_free(void *data, void *p) { - return nxt_mp_free(data, p); + nxt_mp_free(data, p); } |