diff options
author | Stéphane Aulery <lkppo@free.fr> | 2012-01-28 21:54:50 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-02-10 14:11:44 +0100 |
commit | 889ce8da9f5cb079f314508ea6b5f5a3080b50f8 (patch) | |
tree | 6208b866890439d8894f23f26cad62ea5ea1c0f4 | |
parent | f1c6f2c00d88f1cdea6be5ac09e2001f547dc55a (diff) | |
download | fbida-889ce8da9f5cb079f314508ea6b5f5a3080b50f8.tar.gz |
Remove unused variable: scalable
-rw-r--r-- | fb-gui.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -487,14 +487,13 @@ int shadow_draw_string(FT_Face face, int x, int y, wchar_t *str, int align) FT_BitmapGlyph bit; size_t len; int i,ng,pos; - int kerning,scalable; + int kerning; len = wcslen(str); glyphs = malloc(sizeof(*glyphs) * len); memset(glyphs,0,sizeof(*glyphs) * len); kerning = FT_HAS_KERNING(face); - scalable = FT_IS_SCALABLE(face); pgi = 0; for (ng = 0, pos = 0, i = 0; str[i] != 0; i++) { |