* src/bdf/bdflib.c (bdf_parse_start_): Fix tracing labels.

This commit is contained in:
Alexei Podtelezhnikov 2025-01-10 03:23:41 +00:00
parent 704d540527
commit 1f57020ff3
1 changed files with 3 additions and 3 deletions

View File

@ -1975,7 +1975,7 @@
{
p->font->props_size = 0;
FT_ERROR(( "bdf_parse_glyphs_: " ERRMSG5, lineno, "STARTPROPERTIES" ));
FT_ERROR(( "bdf_parse_start_: " ERRMSG5, lineno, "STARTPROPERTIES" ));
error = FT_THROW( Invalid_Argument );
goto Exit;
}
@ -2127,7 +2127,7 @@
nbuf, lineno );
if ( error )
goto Exit;
FT_TRACE2(( "bdf_parse_properties_: " ACMSG1, p->font->bbx.ascent ));
FT_TRACE2(( "bdf_parse_start_: " ACMSG1, p->font->bbx.ascent ));
p->font->font_descent = p->font->bbx.descent;
ft_snprintf( nbuf, BUFSIZE, "%hd", p->font->bbx.descent );
@ -2135,7 +2135,7 @@
nbuf, lineno );
if ( error )
goto Exit;
FT_TRACE2(( "bdf_parse_properties_: " ACMSG2, p->font->bbx.descent ));
FT_TRACE2(( "bdf_parse_start_: " ACMSG2, p->font->bbx.descent ));
*next = bdf_parse_glyphs_;