diff options
author | Matthias Clasen <mclasen@redhat.com> | 2017-06-30 06:02:51 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2017-06-30 06:05:54 -0400 |
commit | b225c305e8a75e2ffff44fefa05bd67d0aea1e7e (patch) | |
tree | 12238f461bf87043ab3dd47cad00216e9c56abab /pango/pangocairo-render.c | |
parent | 148a5af3f66b504d3d36df3c6c45f218250a8a0a (diff) | |
download | pango-b225c305e8a75e2ffff44fefa05bd67d0aea1e7e.tar.gz |
trivial: fix a typo
s/bytess/bytes/ in a warning.
Diffstat (limited to 'pango/pangocairo-render.c')
-rw-r--r-- | pango/pangocairo-render.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pangocairo-render.c b/pango/pangocairo-render.c index 73b1ae36..7670ca13 100644 --- a/pango/pangocairo-render.c +++ b/pango/pangocairo-render.c @@ -598,7 +598,7 @@ pango_cairo_renderer_draw_glyph_item (PangoRenderer *renderer, num_glyphs = backward ? iter.start_glyph - iter.end_glyph : iter.end_glyph - iter.start_glyph; if (num_bytes < 1) - g_warning ("pango_cairo_renderer_draw_glyph_item: bad cluster has num_bytess %d", num_bytes); + g_warning ("pango_cairo_renderer_draw_glyph_item: bad cluster has num_bytes %d", num_bytes); if (num_glyphs < 1) g_warning ("pango_cairo_renderer_draw_glyph_item: bad cluster has num_glyphs %d", num_glyphs); |