--- pzip-0.83/intmath.c.bak 2008-04-06 01:28:54.964480000 +0300 +++ pzip-0.83/intmath.c 2008-04-06 02:04:44.650482453 +0300 @@ -49,9 +49,9 @@ uint ilog2round( uint val ) { #endif } -uint ilog2round_tab[ 8192 ]; +u08 ilog2round_tab[ 8192 ]; -void intmath_init( void ) { int i; for (i = 8192; i --> 1; ) ilog2round_tab[i] = ilog2round( i ); } +void intmath_init( void ) { int i; for (i = 8192; i-- > 1; ) ilog2round_tab[i] = ilog2round( i ); } uint ilog2ceil( uint val ) { --- pzip-0.83/intmath.h.bak 2008-04-06 02:11:06.709479967 +0300 +++ pzip-0.83/intmath.h 2008-04-06 02:06:22.797480782 +0300 @@ -6,7 +6,7 @@ #include "inc.h" extern void intmath_init( void ); -extern uint ilog2round_tab[ 8192 ]; +extern u08 ilog2round_tab[ 8192 ]; #define ilog2roundtab(i) ilog2round_tab[ (i) & 8191 ] #ifndef ispow2