diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:22:18 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:22:18 +0200 |
commit | bcc5cc28c6dc5178e8f4fd0cc521034ae5def388 (patch) | |
tree | bacc60d27b435d32172f97643576c5e4e953177d /wx+/zlib_wrap.h | |
parent | 5.9 (diff) | |
download | FreeFileSync-bcc5cc28c6dc5178e8f4fd0cc521034ae5def388.tar.gz FreeFileSync-bcc5cc28c6dc5178e8f4fd0cc521034ae5def388.tar.bz2 FreeFileSync-bcc5cc28c6dc5178e8f4fd0cc521034ae5def388.zip |
5.10
Diffstat (limited to 'wx+/zlib_wrap.h')
-rw-r--r-- | wx+/zlib_wrap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/zlib_wrap.h b/wx+/zlib_wrap.h index a5ad2cb1..c6545c9d 100644 --- a/wx+/zlib_wrap.h +++ b/wx+/zlib_wrap.h @@ -111,7 +111,7 @@ BinContainer decompress(const BinContainer& stream) //throw ZlibInternalError const size_t bytesWritten = impl::zlib_decompress(&*stream.begin() + sizeof(uncompressedSize), stream.size() - sizeof(uncompressedSize), &*contOut.begin(), - uncompressedSize); //throw ZlibInternalError + static_cast<size_t>(uncompressedSize)); //throw ZlibInternalError if (bytesWritten != static_cast<size_t>(uncompressedSize)) throw ZlibInternalError(); } |