Formatting.

This commit is contained in:
Werner Lemberg 2017-09-14 12:09:37 +02:00
parent b757ddb162
commit 7cb6f2173a
1 changed files with 24 additions and 28 deletions

36
src/cache/ftcbasic.c vendored
View File

@ -304,12 +304,11 @@
if ( anode )
*anode = NULL;
/*
* internal FTC_BasicAttr->load_flags is typed FT_UInt,
* but public FT_ImageType->flags is typed FT_Int32
/*
* Internal `FTC_BasicAttr->load_flags' is of type `FT_UInt',
* but public `FT_ImageType->flags' is of type `FT_Int32'
*
* On 16bit systems, higher bits of type->flags
* could not be handled.
* On 16bit systems, higher bits of type->flags cannot be handled.
*/
#if 0xFFFFFFFFUL > FT_UINT_MAX
if ( (type->flags & (FT_ULong)FT_UINT_MAX) )
@ -386,12 +385,11 @@
if ( anode )
*anode = NULL;
/*
* internal FTC_BasicAttr->load_flags is typed FT_UInt,
* but public FT_Face->face_flags is typed FT_Long.
/*
* Internal `FTC_BasicAttr->load_flags' is of type `FT_UInt',
* but public `FT_Face->face_flags' is of type `FT_Long'.
*
* On long > int systems, higher bits of load_flags
* could not be handled.
* On long > int systems, higher bits of load_flags cannot be handled.
*/
#if FT_ULONG_MAX > FT_UINT_MAX
if ( load_flags > FT_UINT_MAX )
@ -504,12 +502,11 @@
*ansbit = NULL;
/*
* internal FTC_BasicAttr->load_flags is typed FT_UInt,
* but public FT_ImageType->flags is typed FT_Int32
/*
* Internal `FTC_BasicAttr->load_flags' is of type `FT_UInt',
* but public `FT_ImageType->flags' is of type `FT_Int32'.
*
* On 16bit systems, higher bits of type->flags
* could not be handled.
* On 16bit systems, higher bits of type->flags cannot be handled.
*/
#if 0xFFFFFFFFUL > FT_UINT_MAX
if ( (type->flags & (FT_ULong)FT_UINT_MAX) )
@ -588,12 +585,11 @@
*ansbit = NULL;
/*
* internal FTC_BasicAttr->load_flags is typed FT_UInt,
* but public FT_Face->face_flags is typed FT_Long.
/*
* Internal `FTC_BasicAttr->load_flags' is of type `FT_UInt',
* but public `FT_Face->face_flags' is of type `FT_Long'.
*
* On long > int systems, higher bits of load_flags
* could not be handled.
* On long > int systems, higher bits of load_flags cannot be handled.
*/
#if FT_ULONG_MAX > FT_UINT_MAX
if ( load_flags > FT_UINT_MAX )