pidgin/purple-plugin-pack

Parents 691b3a9877ad
Children d317778f9892
Fix a compilation warning; this wouldn't ever work with Pidgin.

comp_rss_parser.c:345: warning: passing argument 7 of ‘purple_util_fetch_url_request’ from incompatible pointer type
--- a/autoprofile/comp_rss_parser.c Mon Jul 13 18:11:06 2009 -0500
+++ b/autoprofile/comp_rss_parser.c Fri Jul 24 21:55:14 2009 -0700
@@ -258,7 +258,8 @@
};
/* Callback for HTTP data fetcher */
-static void url_callback (gpointer data, const char *text, size_t size)
+static void url_callback (PurpleUtilFetchUrlData *url_data, gpointer data,
+ const char *text, size_t size, const gchar *error_message)
{
GMarkupParseContext *context;
gchar *filtered_text;