From 1e72b027270fd2b3f9bd096f3b987d23c4bde450 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 27 Mar 2009 02:13:10 +0000 Subject: Squash warnings svn path=/trunk/netsurf/; revision=6923 --- riscos/plotters.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'riscos/plotters.c') diff --git a/riscos/plotters.c b/riscos/plotters.c index 6b0ebee79..18a2b6fd8 100644 --- a/riscos/plotters.c +++ b/riscos/plotters.c @@ -500,7 +500,7 @@ bool ro_plot_arc(int x, int y, int radius, int angle1, int angle2, colour c) bool ro_plot_bitmap(int x, int y, int width, int height, struct bitmap *bitmap, colour bg, struct content *content) { - char *buffer; + const uint8_t *buffer; buffer = bitmap_get_buffer(bitmap); if (!buffer) { @@ -525,7 +525,7 @@ bool ro_plot_bitmap_tile(int x, int y, int width, int height, struct bitmap *bitmap, colour bg, bool repeat_x, bool repeat_y, struct content *content) { - char *buffer; + const uint8_t *buffer; buffer = bitmap_get_buffer(bitmap); if (!buffer) { -- cgit v1.2.3