summaryrefslogtreecommitdiff
path: root/games/daimonin/files/patch-src-uncompr.c
blob: 5d1b07b4f201dc97b156fe88d3eb359655be49ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- ../../src/uncompr.c.orig	Sun May 20 02:10:22 2007
+++ ../../src/uncompr.c	Mon Jun  4 11:40:00 2007
@@ -60,7 +60,7 @@
 
     stream.next_out = dest;
     stream.avail_out = (uInt) * destLen;
-    if ((uLong) stream.avail_out != *destLen)
+    if ((uLong) stream.avail_out != (uInt) *destLen)
         return Z_BUF_ERROR;
 
     stream.zalloc = (alloc_func) 0;