mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-05 11:18:03 +02:00
* src/truetype/ttobjs.c: Abbreviate tracing.
This commit is contained in:
parent
1beb83fd12
commit
10b3b14da2
1 changed files with 4 additions and 10 deletions
|
|
@ -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…
Add table
Reference in a new issue