From fd154940eddc54e556d6bfb5147cedbda4750c3e Mon Sep 17 00:00:00 2001 From: Shauren Date: Mon, 6 Feb 2023 20:08:39 +0100 Subject: Dep/CascLib: Update to ladislav-zezula/CascLib@a5080b5794027a25d98aa6024b2bef17d06fe0ea --- dep/CascLib/src/CascDecompress.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dep/CascLib/src/CascDecompress.cpp') diff --git a/dep/CascLib/src/CascDecompress.cpp b/dep/CascLib/src/CascDecompress.cpp index 42c4758eb79..19d7d0a88c4 100644 --- a/dep/CascLib/src/CascDecompress.cpp +++ b/dep/CascLib/src/CascDecompress.cpp @@ -40,7 +40,7 @@ DWORD CascDecompress(LPBYTE pbOutBuffer, PDWORD pcbOutBuffer, LPBYTE pbInBuffer, { // Call zlib to decompress the data nResult = inflate(&z, Z_NO_FLUSH); - if (nResult == Z_OK || nResult == Z_STREAM_END) + if(nResult == Z_OK || nResult == Z_STREAM_END) { // Give the size of the uncompressed data cbOutBuffer = z.total_out; -- cgit v1.2.3