mirror of
git://git.savannah.gnu.org/freetype/freetype2.git
synced 2025-04-11 22:56:50 +02:00
* src/truetype/ttobjs.c: Abbreviate tracing.
This commit is contained in:
parent
1beb83fd12
commit
10b3b14da2
@ -949,11 +949,8 @@
|
||||
|
||||
FT_TRACE4(( "Executing `fpgm' table.\n" ));
|
||||
error = face->interpreter( exec );
|
||||
#ifdef FT_DEBUG_LEVEL_TRACE
|
||||
if ( error )
|
||||
FT_TRACE4(( " interpretation failed with error code 0x%x\n",
|
||||
error ));
|
||||
#endif
|
||||
FT_TRACE4(( error ? " failed (error code 0x%x)\n" : "",
|
||||
error ));
|
||||
}
|
||||
else
|
||||
error = FT_Err_Ok;
|
||||
@ -1035,11 +1032,8 @@
|
||||
|
||||
FT_TRACE4(( "Executing `prep' table.\n" ));
|
||||
error = face->interpreter( exec );
|
||||
#ifdef FT_DEBUG_LEVEL_TRACE
|
||||
if ( error )
|
||||
FT_TRACE4(( " interpretation failed with error code 0x%x\n",
|
||||
error ));
|
||||
#endif
|
||||
FT_TRACE4(( error ? " failed (error code 0x%x)\n" : "",
|
||||
error ));
|
||||
}
|
||||
else
|
||||
error = FT_Err_Ok;
|
||||
|
Loading…
x
Reference in New Issue
Block a user