Author: chris_y
Date: Mon Mar 21 15:28:33 2011
New Revision: 12118
URL:
http://source.netsurf-browser.org?rev=12118&view=rev
Log:
Fix compilation
Modified:
trunk/netsurf/image/webp.c
Modified: trunk/netsurf/image/webp.c
URL:
http://source.netsurf-browser.org/trunk/netsurf/image/webp.c?rev=12118&am...
==============================================================================
--- trunk/netsurf/image/webp.c (original)
+++ trunk/netsurf/image/webp.c Mon Mar 21 15:28:33 2011
@@ -46,14 +46,13 @@
union content_msg_data msg_data;
const uint8_t *data;
unsigned char *imagebuf = NULL;
- uint32_t *imagebufptr = NULL;
unsigned long size;
int width = 0, height = 0;
char title[100];
int res = 0;
uint8_t *res_p = NULL;
- data = (uint8 *)content__get_source_data(c, &size);
+ data = (uint8_t *)content__get_source_data(c, &size);
res = WebPGetInfo(data, size, &width, &height);
if (res == 0) {