diff options
author | Andrea Canciani <ranma42@gmail.com> | 2009-08-10 17:43:31 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-08-10 17:44:31 +0100 |
commit | d4d0fcb4a8055f1fdd24fc5b7b64bb55d55e1485 (patch) | |
tree | d5e7d171a834ab194d3858cf94d71dc1d20eac07 /src | |
parent | 2a2a19457bb934f9585bfdb97730fab99c8e386c (diff) |
[quartz] Compile fix for show_glyphs
Correct the prototype for _cairo_quartz_surface_show_glyphs().
Diffstat (limited to 'src')
-rw-r--r-- | src/cairo-quartz-surface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cairo-quartz-surface.c b/src/cairo-quartz-surface.c index f7b7acd4..cc4a8ae8 100644 --- a/src/cairo-quartz-surface.c +++ b/src/cairo-quartz-surface.c @@ -2052,8 +2052,8 @@ _cairo_quartz_surface_show_glyphs (void *abstract_surface, cairo_glyph_t *glyphs, int num_glyphs, cairo_scaled_font_t *scaled_font, - int *remaining_glyphs, - cairo_clip_t *clip) + cairo_clip_t *clip, + int *remaining_glyphs) { CGAffineTransform textTransform, ctm; #define STATIC_BUF_SIZE 64 |