diff options
-rw-r--r-- | tools/source/zcodec/zcodec.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/zcodec/zcodec.cxx b/tools/source/zcodec/zcodec.cxx index 8d23861c796e..0d0ad2be93e0 100644 --- a/tools/source/zcodec/zcodec.cxx +++ b/tools/source/zcodec/zcodec.cxx @@ -273,7 +273,7 @@ long ZCodec::ReadAsynchron( SvStream& rIStm, sal_uInt8* pData, sal_uIntPtr nSize if ( ( nMaxPos - nStreamPos ) < nInToRead ) { rIStm.SetError( ERRCODE_IO_PENDING ); - err= ! Z_STREAM_END; // TODO What is appropriate code for this? + err= int(!Z_STREAM_END); // TODO What is appropriate code for this? break; } |