From: <the...@us...> - 2006-08-14 08:32:54
|
Revision: 16755 Author: thekingant Date: 2006-08-14 01:32:52 -0700 (Mon, 14 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16755&view=rev Log Message: ----------- Whoops, few more warning fixes Modified Paths: -------------- trunk/src/connection.h trunk/src/ft.c trunk/src/upnp.c trunk/src/util.c Modified: trunk/src/connection.h =================================================================== --- trunk/src/connection.h 2006-08-14 08:27:53 UTC (rev 16754) +++ trunk/src/connection.h 2006-08-14 08:32:52 UTC (rev 16755) @@ -271,6 +271,10 @@ * * @return @c TRUE if gc is valid. */ +/* + * TODO: Eventually this bad boy will be removed, because it is + * a gross fix for a crashy problem. + */ #define GAIM_CONNECTION_IS_VALID(gc) (g_list_find(gaim_connections_get_all(), (gc))) /*@}*/ Modified: trunk/src/ft.c =================================================================== --- trunk/src/ft.c 2006-08-14 08:27:53 UTC (rev 16754) +++ trunk/src/ft.c 2006-08-14 08:32:52 UTC (rev 16755) @@ -911,7 +911,7 @@ } static void -connect_cb(gpointer data, gint source) +connect_cb(gpointer data, gint source, const gchar *error_message) { GaimXfer *xfer = (GaimXfer *)data; Modified: trunk/src/upnp.c =================================================================== --- trunk/src/upnp.c 2006-08-14 08:27:53 UTC (rev 16754) +++ trunk/src/upnp.c 2006-08-14 08:32:52 UTC (rev 16755) @@ -780,7 +780,7 @@ } static void -looked_up_internal_ip_cb(gpointer data, gint source) +looked_up_internal_ip_cb(gpointer data, gint source, const gchar *error_message) { if (source) { strncpy(control_info.internalip, Modified: trunk/src/util.c =================================================================== --- trunk/src/util.c 2006-08-14 08:27:53 UTC (rev 16754) +++ trunk/src/util.c 2006-08-14 08:32:52 UTC (rev 16755) @@ -3367,7 +3367,7 @@ } static void -url_fetch_connect_cb(gpointer url_data, gint source) +url_fetch_connect_cb(gpointer url_data, gint source, const gchar *error_message) { GaimFetchUrlData *gfud; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |