fix for #42484 (extra ";" after the loop control). r=cata, a=waterson

This commit is contained in:
yueheng.xu%intel.com 2000-06-14 22:13:13 +00:00
Родитель 6eb5528834
Коммит 6f1f54c831
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -199,7 +199,7 @@ NS_IMETHODIMP nsUnicodeToGB2312V2::FillInfo(PRUint32 *aInfo)
}
//GB2312 font lib also have single byte ASCII characters, set them here
for ( SrcUnicode = 0x0000; SrcUnicode <= 0x00FF; SrcUnicode++);
for ( SrcUnicode = 0x0000; SrcUnicode <= 0x00FF; SrcUnicode++)
{
SET_REPRESENTABLE(aInfo, SrcUnicode);
}

Просмотреть файл

@ -205,7 +205,7 @@ NS_IMETHODIMP nsUnicodeToGBK::FillInfo(PRUint32 *aInfo)
}
//GBK font lib also have single byte ASCII characters, set them here
for ( SrcUnicode = 0x0000; SrcUnicode <= 0x00FF; SrcUnicode++);
for ( SrcUnicode = 0x0000; SrcUnicode <= 0x00FF; SrcUnicode++)
{
SET_REPRESENTABLE(aInfo, SrcUnicode);
}