зеркало из https://github.com/mozilla/pjs.git
fix for #42484 (extra ";" after the loop control). r=cata, a=waterson
This commit is contained in:
Родитель
6eb5528834
Коммит
6f1f54c831
|
@ -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);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче