OSDN Git Service

* src/shuf.c (decode_start_st0): wrong value was assigned.
authorarai <arai@6a8cc165-1e22-0410-a132-eb4e3f353aba>
Mon, 21 Jul 2003 20:56:03 +0000 (20:56 +0000)
committerarai <arai@6a8cc165-1e22-0410-a132-eb4e3f353aba>
Mon, 21 Jul 2003 20:56:03 +0000 (20:56 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/lha/lha/trunk@744 6a8cc165-1e22-0410-a132-eb4e3f353aba

src/shuf.c

index 93d0f32..a8cb54b 100644 (file)
@@ -29,13 +29,7 @@ decode_start_st0( /*void*/ )
     maxmatch = MAXMATCH;
     init_getbits();
     init_code_cache();
-#ifdef SUPPORT_LH7
-    np = 1 << (MAX_DICBIT - 7);
-#endif
-#ifndef SUPPORT_LH7
-    np = 1 << (MAX_DICBIT - 6);
-#endif
-
+    np = 1 << (LZHUFF3_DICBIT - 6);
 }
 
 /* ------------------------------------------------------------------------ */