diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2006-09-08 15:12:07 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2006-09-08 15:12:07 -0400 |
commit | 99360bd35d77e1a3f536e72f5729455580c980c2 (patch) | |
tree | 3278e7e52400a81373d758c36bd114569d95676e /src/cairo.c | |
parent | c475d2ca69fa8fbdf1c50f1d5d1b6b558b8fd6cd (diff) |
cairo_show_glphs: Mark glyphs argument as const.
Diffstat (limited to 'src/cairo.c')
-rw-r--r-- | src/cairo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo.c b/src/cairo.c index 425a71761..59844ffac 100644 --- a/src/cairo.c +++ b/src/cairo.c @@ -2537,7 +2537,7 @@ cairo_show_text (cairo_t *cr, const char *utf8) } void -cairo_show_glyphs (cairo_t *cr, cairo_glyph_t *glyphs, int num_glyphs) +cairo_show_glyphs (cairo_t *cr, const cairo_glyph_t *glyphs, int num_glyphs) { if (cr->status) return; |