mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-23 14:59:47 +03:00
Squash warnings
svn path=/trunk/netsurf/; revision=6923
This commit is contained in:
parent
6d6491b240
commit
1e72b02727
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user