formatting

This commit is contained in:
Werner Lemberg 2001-02-10 17:45:01 +00:00
parent 502f702125
commit 7fcdadc17a
1 changed files with 4 additions and 3 deletions

View File

@ -306,10 +306,11 @@
/* read a floating point number, either integer or real, */
/* but return 1000 times the number read in. */
static
FT_Fixed cff_parse_fixed_thousand( FT_Byte** d )
FT_Fixed cff_parse_fixed_thousand( FT_Byte** d )
{
return ( **d == 30 ? cff_parse_real ( d[0], d[1], 3 )
: (FT_Fixed)FT_MulFix ( cff_parse_integer( d[0], d[1] ) << 16, 1000 ) );
return **d ==
30 ? cff_parse_real ( d[0], d[1], 3 )
: (FT_Fixed)FT_MulFix( cff_parse_integer( d[0], d[1] ) << 16, 1000 );
}
static