diff options
author | Nathan Moinvaziri <nathan@solidstatenetworks.com> | 2020-07-05 11:13:20 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-08-02 18:32:25 +0200 |
commit | d5d1f7e81b4814e60857372f451b106f5a401118 (patch) | |
tree | 816107d16b11f279dbf1435f331201d030b778af /zutil.c | |
parent | 4d385859f326ed9089270ae95961f12b135c37c8 (diff) |
Fixed extra symbols added to ABI when zlib-compat specified.
Diffstat (limited to 'zutil.c')
-rw-r--r-- | zutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,7 +9,7 @@ # include "gzguts.h" #endif -const char * const zng_errmsg[10] = { +const char * const PREFIX(z_errmsg)[10] = { (const char *)"need dictionary", /* Z_NEED_DICT 2 */ (const char *)"stream end", /* Z_STREAM_END 1 */ (const char *)"", /* Z_OK 0 */ @@ -23,7 +23,7 @@ const char * const zng_errmsg[10] = { }; const char zlibng_string[] = - " zlib-ng 1.9.9 forked from zlib 1.2.11 "; + " zlib-ng 1.9.9 forked from zlib 1.2.12.f "; #ifdef ZLIB_COMPAT const char * ZEXPORT zlibVersion(void) { |