summaryrefslogtreecommitdiff
path: root/cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs')
-rw-r--r--cs/CLZF.cs2
1 files changed, 1 insertions, 1 deletions
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));
}
/*