Squash warnings

svn path=/trunk/netsurf/; revision=6923
This commit is contained in:
John Mark Bell 2009-03-27 02:13:10 +00:00
parent 6d6491b240
commit 1e72b02727

View File

@ -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) {