From f280629860026509e0fbec24f963b2e8ea7e431b Mon Sep 17 00:00:00 2001 From: root Date: Mon, 14 Dec 2009 02:05:14 +0000 Subject: *** empty log message *** --- cs/CLZF.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cs') diff --git a/cs/CLZF.cs b/cs/CLZF.cs index 4e1b5d5..710419a 100644 --- a/cs/CLZF.cs +++ b/cs/CLZF.cs @@ -138,7 +138,7 @@ namespace LZF.NET UInt32 IDX(UInt32 h) { - return ((h ^ (h << 5)) >> (int)(((3*8 - HLOG)) - h*5) & (HSIZE - 1)); + return ((((h ^ (h << 5)) >> (int) (3*8 - HLOG)) - h*5) & (HSIZE - 1)); } /* -- cgit v1.2.3