diff options
Diffstat (limited to 'cs')
-rw-r--r-- | cs/CLZF.cs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); } /* |