# HG changeset patch # User Stu Tomlinson # Date 1247190512 0 # Node ID 065294d973b430a37e4608d88c29ac69c57ad814 # Parent daa38f8926eb89f9f159dab4b8dbd3505f7dda7e This fixes this compile warning: util.c:4052: warning: passing argument 2 of ¡Æprocess_chunked_data¡Ç from incompatible pointer type util.c:3861: note: expected ¡Ægsize *¡Ç but argument is of type ¡Ælong unsigned int *¡Ç Someone could do with checking our use of various different types (gsize, gssize, unsigned long, I forget what else) throughout the url parsing and retrieving things. diff -r daa38f8926eb -r 065294d973b4 libpurple/util.c --- a/libpurple/util.c Fri Jul 10 01:45:26 2009 +0000 +++ b/libpurple/util.c Fri Jul 10 01:48:32 2009 +0000 @@ -65,7 +65,7 @@ gboolean got_headers; gboolean has_explicit_data_len; char *webdata; - unsigned long len; + gsize len; unsigned long data_len; gssize max_len; gboolean chunked;