fix warning

svn-id: r6579
This commit is contained in:
Max Horn 2003-01-30 23:33:22 +00:00
parent ca8d49f2e1
commit ee047a0fa8

View File

@ -227,10 +227,10 @@ void OPLBuildTables(int ENV_BITS_PARAM, int EG_ENT_PARAM) {
EG_AED = EG_DST;
//EG_STEP = (96.0/EG_ENT);
for (i=0; i<sizeof(KSL_TABLE_SEED); i++)
for (i=0; i < (int)sizeof(KSL_TABLE_SEED); i++)
KSL_TABLE[i] = SC_KSL(KSL_TABLE_SEED[i]);
for (i=0; i<sizeof(SL_TABLE_SEED); i++)
for (i=0; i < (int)sizeof(SL_TABLE_SEED); i++)
SL_TABLE[i] = SC_SL(SL_TABLE_SEED[i]);
}