From: Jon A. Cruz Date: Sun, 18 Apr 2010 08:40:21 +0000 (-0700) Subject: Correct #endif placement. Should fix win32 build. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c1bec19e42abed2d215058d26b0132b5173632c2;p=inkscape.git Correct #endif placement. Should fix win32 build. --- diff --git a/src/libnrtype/FontInstance.cpp b/src/libnrtype/FontInstance.cpp index 7b16ae9b2..b958e899d 100644 --- a/src/libnrtype/FontInstance.cpp +++ b/src/libnrtype/FontInstance.cpp @@ -473,8 +473,8 @@ int font_instance::MapUnicodeChar(gunichar c) } else { res = FT_Get_Char_Index(theFace, c); } - } #endif + } return res; }