Formatting.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
diff --git a/src/cache/ftcbasic.c b/src/cache/ftcbasic.c
index 59221f2..bd51a53 100644
--- a/src/cache/ftcbasic.c
+++ b/src/cache/ftcbasic.c
@@ -304,13 +304,12 @@
if ( anode )
*anode = NULL;
-/*
- * internal FTC_BasicAttr->load_flags is typed FT_UInt,
- * but public FT_ImageType->flags is typed FT_Int32
- *
- * On 16bit systems, higher bits of type->flags
- * could not be handled.
- */
+ /*
+ * 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 cannot be handled.
+ */
#if 0xFFFFFFFFUL > FT_UINT_MAX
if ( (type->flags & (FT_ULong)FT_UINT_MAX) )
FT_TRACE1(( "FTC_ImageCache_Lookup:"
@@ -386,13 +385,12 @@
if ( anode )
*anode = NULL;
-/*
- * internal FTC_BasicAttr->load_flags is typed FT_UInt,
- * but public FT_Face->face_flags is typed FT_Long.
- *
- * On long > int systems, higher bits of load_flags
- * could not be handled.
- */
+ /*
+ * 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 cannot be handled.
+ */
#if FT_ULONG_MAX > FT_UINT_MAX
if ( load_flags > FT_UINT_MAX )
FT_TRACE1(( "FTC_ImageCache_LookupScaler:"
@@ -504,13 +502,12 @@
*ansbit = NULL;
-/*
- * internal FTC_BasicAttr->load_flags is typed FT_UInt,
- * but public FT_ImageType->flags is typed FT_Int32
- *
- * On 16bit systems, higher bits of type->flags
- * could not be handled.
- */
+ /*
+ * 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 cannot be handled.
+ */
#if 0xFFFFFFFFUL > FT_UINT_MAX
if ( (type->flags & (FT_ULong)FT_UINT_MAX) )
FT_TRACE1(( "FTC_ImageCache_Lookup:"
@@ -588,13 +585,12 @@
*ansbit = NULL;
-/*
- * internal FTC_BasicAttr->load_flags is typed FT_UInt,
- * but public FT_Face->face_flags is typed FT_Long.
- *
- * On long > int systems, higher bits of load_flags
- * could not be handled.
- */
+ /*
+ * 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 cannot be handled.
+ */
#if FT_ULONG_MAX > FT_UINT_MAX
if ( load_flags > FT_UINT_MAX )
FT_TRACE1(( "FTC_ImageCache_LookupScaler:"