summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-27 02:13:10 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-27 02:13:10 +0000
commit1e72b027270fd2b3f9bd096f3b987d23c4bde450 (patch)
treef9fc4ceaf45604125da6b0c49b416ce2ce3bfb33 /riscos
parent6d6491b240e7aee07992134b2bcbb9f3cf460de7 (diff)
downloadnetsurf-1e72b027270fd2b3f9bd096f3b987d23c4bde450.tar.gz
netsurf-1e72b027270fd2b3f9bd096f3b987d23c4bde450.tar.bz2
Squash warnings
svn path=/trunk/netsurf/; revision=6923
Diffstat (limited to 'riscos')
-rw-r--r--riscos/plotters.c4
1 files changed, 2 insertions, 2 deletions
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) {