summaryrefslogtreecommitdiff
path: root/pango/pango-utils.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2007-12-05 03:41:29 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2007-12-05 03:41:29 +0000
commit4898375b8be725ccc83dff5c3b020e555148ddb7 (patch)
tree183b8be01500f946055ebc30fe916e782e34756b /pango/pango-utils.c
parentf5e62ac0f993badf002683a4448825438c16bbf6 (diff)
downloadpango-4898375b8be725ccc83dff5c3b020e555148ddb7.tar.gz
Bug 501575 – Compile errors Patch from Jens Granseuer
2007-12-04 Behdad Esfahbod <behdad@gnome.org> Bug 501575 – Compile errors Patch from Jens Granseuer * pango/opentype/harfbuzz-stream.c (_hb_font_goto_table): * pango/pango-utils.c (handle_alias_line): Fix C99ism. svn path=/trunk/; revision=2514
Diffstat (limited to 'pango/pango-utils.c')
-rw-r--r--pango/pango-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pango-utils.c b/pango/pango-utils.c
index 1776ab9f..0975af94 100644
--- a/pango/pango-utils.c
+++ b/pango/pango-utils.c
@@ -1248,6 +1248,7 @@ handle_alias_line (GString *line_buffer,
const char *pos;
struct PangoAlias alias_key;
struct PangoAlias *alias;
+ gboolean append = FALSE;
char **new_families;
int n_new;
int i;
@@ -1255,7 +1256,6 @@ handle_alias_line (GString *line_buffer,
tmp_buffer1 = g_string_new (NULL);
tmp_buffer2 = g_string_new (NULL);
- gboolean append = FALSE;
pos = line_buffer->str;
if (!pango_skip_space (&pos))