зеркало из https://github.com/mozilla/gecko-dev.git
compiler warning fix (paren inclusion) submitted by dkindred@cmu.edu . approved/rev'd by nisheeth
This commit is contained in:
Родитель
e94974f380
Коммит
94b209c54f
|
@ -8344,7 +8344,7 @@ lo_SkipInitialSpace ( LO_TextBlock * block )
|
|||
if ( ( breakIndex == 0 ) && ( breakIndex < block->break_write_index ) && XP_IS_SPACE ( block->text_buffer[ 0 ] ) )
|
||||
{
|
||||
breakLong = block->break_table[ breakIndex >> 3 ];
|
||||
breakLong >>= ( 7 - breakIndex & 0x7 ) << 2;
|
||||
breakLong >>= ( 7 - ( breakIndex & 0x7 ) ) << 2;
|
||||
|
||||
if ( breakLong == 0 )
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче