comparison libpurple/util.c @ 27521:065294d973b4

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.
author Stu Tomlinson <stu@nosnilmot.com>
date Fri, 10 Jul 2009 01:48:32 +0000
parents 52298a298260
children 60d128c6413a
comparison
equal deleted inserted replaced
27520:daa38f8926eb 27521:065294d973b4
63 guint inpa; 63 guint inpa;
64 64
65 gboolean got_headers; 65 gboolean got_headers;
66 gboolean has_explicit_data_len; 66 gboolean has_explicit_data_len;
67 char *webdata; 67 char *webdata;
68 unsigned long len; 68 gsize len;
69 unsigned long data_len; 69 unsigned long data_len;
70 gssize max_len; 70 gssize max_len;
71 gboolean chunked; 71 gboolean chunked;
72 }; 72 };
73 73