From 20c24fd3a27eb6d9e63783b4566fcfe0ad745426 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Mon, 29 May 2006 19:38:49 +0900 Subject: [PATCH] gdi32: Fix an unused variable warning. --- dlls/gdi/freetype.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/dlls/gdi/freetype.c b/dlls/gdi/freetype.c index 3136244dd5c..abb33f9294a 100644 --- a/dlls/gdi/freetype.c +++ b/dlls/gdi/freetype.c @@ -4040,21 +4040,23 @@ BOOL WINAPI FontIsLinked(HDC hdc) static BOOL is_hinting_enabled(void) { - FT_Module mod; - /* Use the >= 2.2.0 function if available */ if(pFT_Get_TrueType_Engine_Type) { FT_TrueTypeEngineType type = pFT_Get_TrueType_Engine_Type(library); return type == FT_TRUETYPE_ENGINE_TYPE_PATENTED; } - - /* otherwise if we've been compiled with < 2.2.0 headers - use the internal macro */ #ifdef FT_DRIVER_HAS_HINTER - mod = pFT_Get_Module(library, "truetype"); - if(mod && FT_DRIVER_HAS_HINTER(mod)) - return TRUE; + else + { + FT_Module mod; + + /* otherwise if we've been compiled with < 2.2.0 headers + use the internal macro */ + mod = pFT_Get_Module(library, "truetype"); + if(mod && FT_DRIVER_HAS_HINTER(mod)) + return TRUE; + } #endif return FALSE;