diff options
author | root <root> | 2009-12-14 02:05:14 +0000 |
---|---|---|
committer | root <root> | 2009-12-14 02:05:14 +0000 |
commit | f280629860026509e0fbec24f963b2e8ea7e431b (patch) | |
tree | 2e3226c0103497fa69a8631776cc004a51f370e9 /cs | |
parent | 2ed86fd870010355652c5e41b380ece4ddb8c9bd (diff) |
*** empty log message ***
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)); } /* |