diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/zcodec/zcodec.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/zcodec/zcodec.cxx b/tools/source/zcodec/zcodec.cxx index ca75de1b4c02..385ad7b04b58 100644 --- a/tools/source/zcodec/zcodec.cxx +++ b/tools/source/zcodec/zcodec.cxx @@ -366,7 +366,7 @@ void ZCodec::InitDecompress(SvStream & inStream) { inStream.ReadUChar( j ); } - while ( j && !inStream.IsEof() ); + while ( j && !inStream.eof() ); } /* skip the .gz file comment */ if ( nFlags & GZ_COMMENT ) @@ -375,7 +375,7 @@ void ZCodec::InitDecompress(SvStream & inStream) { inStream.ReadUChar( j ); } - while ( j && !inStream.IsEof() ); + while ( j && !inStream.eof() ); } /* skip the header crc */ if ( nFlags & GZ_HEAD_CRC ) |