summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2009-11-25 19:49:44 -0500
committerBehdad Esfahbod <behdad@behdad.org>2009-11-25 19:49:44 -0500
commit1a6d89b217fb259f91f8661351336cec651c55e3 (patch)
tree24dc5b6ea0cc309dee809906839e6da512f08619
parentb685d25141ba069d2494b17fada2ecedd6dd0df5 (diff)
downloadpango-1a6d89b217fb259f91f8661351336cec651c55e3.tar.gz
Bug 602823 - void function cannot return value
-rw-r--r--pango/glyphstring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/glyphstring.c b/pango/glyphstring.c
index 0382eb6e..dedd822c 100644
--- a/pango/glyphstring.c
+++ b/pango/glyphstring.c
@@ -347,7 +347,7 @@ pango_glyph_string_get_logical_widths (PangoGlyphString *glyphs,
NULL}};
PangoGlyphItem glyph_item = {&item, glyphs};
- return pango_glyph_item_get_logical_widths (&glyph_item, text, logical_widths);
+ pango_glyph_item_get_logical_widths (&glyph_item, text, logical_widths);
}
/* The initial implementation here is script independent,