Commit de27955c2af5a0e622a6705e232bfc7f32060e80

Werner Lemberg 2022-07-01T06:33:50

Minor formatting.

diff --git a/src/base/ftobjs.c b/src/base/ftobjs.c
index f66273f..0f6fd0a 100644
--- a/src/base/ftobjs.c
+++ b/src/base/ftobjs.c
@@ -2215,7 +2215,8 @@
     if ( FT_QALLOC( sfnt_data, rlen ) )
       return error;
     error = FT_Stream_Read( stream, (FT_Byte *)sfnt_data, (FT_ULong)rlen );
-    if ( error ) {
+    if ( error )
+    {
       FT_FREE( sfnt_data );
       goto Exit;
     }
diff --git a/src/truetype/ttgxvar.c b/src/truetype/ttgxvar.c
index 65fc701..6cb2cc9 100644
--- a/src/truetype/ttgxvar.c
+++ b/src/truetype/ttgxvar.c
@@ -1160,7 +1160,8 @@
                                    outerIndex,
                                    innerIndex );
 
-    if ( delta ) {
+    if ( delta )
+    {
       FT_TRACE5(( "%s value %d adjusted by %d unit%s (%s)\n",
                   vertical ? "vertical height" : "horizontal width",
                   *avalue,
diff --git a/src/truetype/ttinterp.c b/src/truetype/ttinterp.c
index e16565c..2ddeee3 100644
--- a/src/truetype/ttinterp.c
+++ b/src/truetype/ttinterp.c
@@ -8570,7 +8570,8 @@
 
       /* increment instruction counter and check if we didn't */
       /* run this program for too long (e.g. infinite loops). */
-      if ( ++ins_counter > TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES ) {
+      if ( ++ins_counter > TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES )
+      {
         exc->error = FT_THROW( Execution_Too_Long );
         goto LErrorLabel_;
       }