* src/bdf/bdflib.c (_bdf_parse_start): Drop redundant error tracing.

This commit is contained in:
Werner Lemberg 2011-12-08 11:22:07 +01:00
parent 24b77764e7
commit 96fcf87b75
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2011-12-08 Werner Lemberg <wl@gnu.org>
* src/bdf/bdflib.c (_bdf_parse_start): Drop redundant error tracing.
2011-12-02 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
[mac] Unify DARWIN_NO_CARBON with FT_MACINTOSH.

View File

@ -2066,8 +2066,8 @@
if ( ft_memcmp( line, "STARTFONT", 9 ) != 0 )
{
/* No STARTFONT field is a good indication of a problem. */
FT_ERROR(( "_bdf_parse_start: " ERRMSG1, lineno, "STARTFONT" ));
/* we don't emit an error message since this code gets */
/* explicitly caught one level higher */
error = BDF_Err_Missing_Startfont_Field;
goto Exit;
}