diff options
author | aavit <qt-info@nokia.com> | 2011-02-18 14:27:21 (GMT) |
---|---|---|
committer | Qt Commercial Integration <QtCommercial@digia.com> | 2012-01-31 10:24:57 (GMT) |
commit | 00dfa90f9f2fef1f29fd356c488da5e156f20227 (patch) | |
tree | 78086243aa13282d5b74075ad205e3b465f06409 /src | |
parent | d8aaa1866f7bf58992c8578704ffd66627c2e59d (diff) | |
download | Qt-00dfa90f9f2fef1f29fd356c488da5e156f20227.zip Qt-00dfa90f9f2fef1f29fd356c488da5e156f20227.tar.gz Qt-00dfa90f9f2fef1f29fd356c488da5e156f20227.tar.bz2 |
Fixes: missing export of gzungetc() from internal zlib
Task-number: QTBUG-17278
Reviewed-by: jiang
Diffstat (limited to 'src')
-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 |