diff options
Diffstat (limited to 'games/daimonin-client/files/patch-src-uncompr.c')
-rw-r--r-- | games/daimonin-client/files/patch-src-uncompr.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games/daimonin-client/files/patch-src-uncompr.c b/games/daimonin-client/files/patch-src-uncompr.c new file mode 100644 index 00000000000..c1a12436298 --- /dev/null +++ b/games/daimonin-client/files/patch-src-uncompr.c @@ -0,0 +1,11 @@ +--- ../../src/uncompr.c.orig Sun Nov 30 22:59:30 2003 ++++ ../../src/uncompr.c Wed Feb 16 22:11:32 2005 +@@ -39,7 +39,7 @@ + + stream.next_out = dest; + stream.avail_out = (uInt)*destLen; +- if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; ++ if ((uLong)stream.avail_out != (uInt)*destLen) return Z_BUF_ERROR; + + stream.zalloc = (alloc_func)0; + stream.zfree = (free_func)0; |