* src/truetype/ttobjs.c: Abbreviate tracing.
diff --git a/src/truetype/ttobjs.c b/src/truetype/ttobjs.c
index d0ac318..8033edb 100644
--- a/src/truetype/ttobjs.c
+++ b/src/truetype/ttobjs.c
@@ -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;