From 9ca92de5f3720507a5f8dfb52dce55468760df48 Mon Sep 17 00:00:00 2001 From: malc Date: Sat, 3 Mar 2012 12:36:43 +0400 Subject: [PATCH] Consistency --- glfont.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/glfont.c b/glfont.c index ce33c4c..1297ac8 100644 --- a/glfont.c +++ b/glfont.c @@ -111,8 +111,8 @@ static FT_Face load_font(char *fontname) code = FT_New_Face (g_freetype_lib, fontname, 0, &face); if (code) { - fprintf (stderr, "failed to load font `%s'\n", fontname); - return NULL; + fprintf (stderr, "failed to load font `%s'\n", fontname); + return NULL; } FT_Select_Charmap(face, ft_encoding_unicode); @@ -132,8 +132,8 @@ static FT_Face load_builtin_font(void *base, int len) code = FT_New_Memory_Face(g_freetype_lib, base, len, 0, &face); if (code) { - fprintf (stderr, "failed to load builtin font\n"); - return NULL; + fprintf (stderr, "failed to load builtin font\n"); + return NULL; } FT_Select_Charmap(face, ft_encoding_unicode); -- 2.11.4.GIT