From 1cf46a6792a9e243edb857e131e44338bcbbd341 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 25 Feb 2008 17:58:00 +0000 Subject: SignednessWarnings.squash() Aside from a number of instances of const being cast away (mostly relating to the urldb, which is correct to only export const data) this now builds warning-free with GCC 4 on x86, which is nice. svn path=/trunk/netsurf/; revision=3868 --- image/ico.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'image/ico.c') diff --git a/image/ico.c b/image/ico.c index 50c69c4e3..45d445000 100644 --- a/image/ico.c +++ b/image/ico.c @@ -53,7 +53,7 @@ bool nsico_convert(struct content *c, int iwidth, int iheight) { /* set our source data */ ico = c->data.ico.ico; - ico->ico_data = c->source_data; + ico->ico_data = (unsigned char *) c->source_data; ico->buffer_size = c->source_size; /* analyse the BMP */ -- cgit v1.2.3