* src/base/ftdebug.c (FT_Throw): Reduce chattiness.

This commit is contained in:
Werner Lemberg 2018-08-31 14:57:36 +02:00
parent 83525bdd10
commit aff04e91f6
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2018-08-31 Werner Lemberg <wl@gnu.org>
* src/base/ftdebug.c (FT_Throw): Reduce chattiness.
2018-08-31 Werner Lemberg <wl@gnu.org>
* src/autofit/afhints.c (af_glyph_hints_reload): Add initialization.

View File

@ -87,12 +87,15 @@
int line,
const char* file )
{
#if 0
/* activating the code in this block makes FreeType very chatty */
fprintf( stderr,
"%s:%d: error 0x%02x: %s\n",
file,
line,
error,
FT_Error_String( error ) );
#endif
return 0;
}