Whitespace.

This commit is contained in:
Werner Lemberg 2012-01-02 14:11:43 +01:00
parent 5cb356405e
commit eef90d3d1e
1 changed files with 6 additions and 6 deletions

View File

@ -214,9 +214,9 @@
if ( pos1 >= face->glyf_len ) if ( pos1 >= face->glyf_len )
{ {
FT_TRACE1(( "tt_face_get_location:" FT_TRACE1(( "tt_face_get_location:"
" too large offset=0x%08lx found for gid=0x%04lx," " too large offset=0x%08lx found for gid=0x%04lx,"
" exceeding the end of glyf table (0x%08lx)\n", " exceeding the end of glyf table (0x%08lx)\n",
pos1, gindex, face->glyf_len )); pos1, gindex, face->glyf_len ));
*asize = 0; *asize = 0;
return 0; return 0;
} }
@ -224,9 +224,9 @@
if ( pos2 >= face->glyf_len ) if ( pos2 >= face->glyf_len )
{ {
FT_TRACE1(( "tt_face_get_location:" FT_TRACE1(( "tt_face_get_location:"
" too large offset=0x%08lx found for gid=0x%04lx," " too large offset=0x%08lx found for gid=0x%04lx,"
" truncate at the end of glyf table (0x%08lx)\n", " truncate at the end of glyf table (0x%08lx)\n",
pos2, gindex + 1, face->glyf_len )); pos2, gindex + 1, face->glyf_len ));
pos2 = face->glyf_len; pos2 = face->glyf_len;
} }