Whitespace.

This commit is contained in:
Werner Lemberg 2018-10-07 08:59:56 +02:00
parent f262d15d0a
commit 0a178144e8
3 changed files with 3 additions and 3 deletions

View File

@ -731,7 +731,7 @@
/* check for `input' delayed to `inflate' */
if ( !memory || ! output_len || !output )
if ( !memory || !output_len || !output )
return FT_THROW( Invalid_Argument );
/* this function is modeled after zlib's `uncompress' function */

View File

@ -331,7 +331,7 @@
cf2_hintmap_map( CF2_HintMap hintmap,
CF2_Fixed csCoord )
{
if ( hintmap->count == 0 || ! hintmap->hinted )
if ( hintmap->count == 0 || !hintmap->hinted )
{
/* there are no hints; use uniform scale and zero offset */
return FT_MulFix( csCoord, hintmap->scale );

View File

@ -545,7 +545,7 @@
/* First of all, scale the points, if we are not hinting */
if ( !hinting || ! decoder.builder.hints_funcs )
if ( !hinting || !decoder.builder.hints_funcs )
for ( n = cur->n_points; n > 0; n--, vec++ )
{
vec->x = FT_MulFix( vec->x, x_scale );