diff options
author | aavit <qt-info@nokia.com> | 2011-02-18 14:27:21 (GMT) |
---|---|---|
committer | aavit <qt-info@nokia.com> | 2011-02-18 14:38:20 (GMT) |
commit | 64c22524372450f37ae2c11c3f62a82ad18784e9 (patch) | |
tree | 9170b9480572609fe8cd6f3ffd8f6cf30930be80 /src/3rdparty/zlib | |
parent | dee5662e0218e754d425c8960edb1e8ffd27fde6 (diff) | |
download | Qt-64c22524372450f37ae2c11c3f62a82ad18784e9.zip Qt-64c22524372450f37ae2c11c3f62a82ad18784e9.tar.gz Qt-64c22524372450f37ae2c11c3f62a82ad18784e9.tar.bz2 |
Fixes: missing export of gzungetc() from internal zlib
Task-number: QTBUG-17278
Reviewed-by: jiang
Diffstat (limited to 'src/3rdparty/zlib')
-rw-r--r-- | src/3rdparty/zlib/zlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/zlib/zlib.h b/src/3rdparty/zlib/zlib.h index 9e5b467..bdb9a3d 100644 --- a/src/3rdparty/zlib/zlib.h +++ b/src/3rdparty/zlib/zlib.h @@ -1171,7 +1171,7 @@ ZEXTERN int Q_ZEXPORT gzgetc OF((gzFile file)); or -1 in case of end of file or error. */ -ZEXTERN int ZEXPORT gzungetc OF((int c, gzFile file)); +ZEXTERN int Q_ZEXPORT gzungetc OF((int c, gzFile file)); /* Push one character back onto the stream to be read again later. Only one character of push-back is allowed. gzungetc() returns the |