* src/truetype/ttobjs.c: Abbreviate tracing.

This commit is contained in:
Alexei Podtelezhnikov 2025-01-01 23:04:14 -05:00
parent 1beb83fd12
commit 10b3b14da2

View File

@ -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;