From 1f57020ff37a6c3ae43fc3fbe0fb547057877e2d Mon Sep 17 00:00:00 2001 From: Alexei Podtelezhnikov Date: Fri, 10 Jan 2025 03:23:41 +0000 Subject: [PATCH] * src/bdf/bdflib.c (bdf_parse_start_): Fix tracing labels. --- src/bdf/bdflib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bdf/bdflib.c b/src/bdf/bdflib.c index 813a4d839..d5f0710c4 100644 --- a/src/bdf/bdflib.c +++ b/src/bdf/bdflib.c @@ -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_;