Commit eef90d3d1e6a98cd7b6205f2b41b2ea8789c53b7

Werner Lemberg 2012-01-02T14:11:43

Whitespace.

diff --git a/src/truetype/ttpload.c b/src/truetype/ttpload.c
index 818b29d..7b92b66 100644
--- a/src/truetype/ttpload.c
+++ b/src/truetype/ttpload.c
@@ -214,9 +214,9 @@
     if ( pos1 >= face->glyf_len )
     {
       FT_TRACE1(( "tt_face_get_location:"
-                 " too large offset=0x%08lx found for gid=0x%04lx,"
-                 " exceeding the end of glyf table (0x%08lx)\n",
-                 pos1, gindex, face->glyf_len ));
+                  " too large offset=0x%08lx found for gid=0x%04lx,"
+                  " exceeding the end of glyf table (0x%08lx)\n",
+                  pos1, gindex, face->glyf_len ));
       *asize = 0;
       return 0;
     }
@@ -224,9 +224,9 @@
     if ( pos2 >= face->glyf_len )
     {
       FT_TRACE1(( "tt_face_get_location:"
-                 " too large offset=0x%08lx found for gid=0x%04lx,"
-                 " truncate at the end of glyf table (0x%08lx)\n",
-                 pos2, gindex + 1, face->glyf_len ));
+                  " too large offset=0x%08lx found for gid=0x%04lx,"
+                  " truncate at the end of glyf table (0x%08lx)\n",
+                  pos2, gindex + 1, face->glyf_len ));
       pos2 = face->glyf_len;
     }