From 00c0223d96a59dafa950f52fa254634ca36ddd90 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Mon, 14 Mar 2011 14:04:29 +0100 Subject: [PATCH] Function renaming. --- src/ttfautohint.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ttfautohint.c b/src/ttfautohint.c index 9cf8d9c..0573ee7 100644 --- a/src/ttfautohint.c +++ b/src/ttfautohint.c @@ -52,8 +52,8 @@ typedef struct FONT_ { static FT_Error -TA_font_load_into_memory(FILE* in, - FONT* font) +TA_font_read(FILE* in, + FONT* font) { fseek(in, 0, SEEK_END); font->in_len = ftell(in); @@ -531,7 +531,7 @@ TTF_autohint(FILE* in, if (!font) return FT_Err_Out_Of_Memory; - error = TA_font_load_into_memory(in, font); + error = TA_font_read(in, font); if (error) goto Err; -- 2.11.4.GIT