From: <the...@us...> - 2006-12-21 08:14:05
|
Revision: 18035 http://svn.sourceforge.net/gaim/?rev=18035&view=rev Author: thekingant Date: 2006-12-21 00:14:05 -0800 (Thu, 21 Dec 2006) Log Message: ----------- Get rid of a compile warning: gtkblist.c: In function ?\226?\128?\152redo_buddy_list?\226?\128?\153: gtkblist.c:4378: warning: ISO C90 forbids mixed declarations and code Modified Paths: -------------- trunk/gtk/gtkblist.c Modified: trunk/gtk/gtkblist.c =================================================================== --- trunk/gtk/gtkblist.c 2006-12-21 00:40:21 UTC (rev 18034) +++ trunk/gtk/gtkblist.c 2006-12-21 08:14:05 UTC (rev 18035) @@ -4371,11 +4371,13 @@ static void redo_buddy_list(GaimBuddyList *list, gboolean remove, gboolean rerender) { + GaimBlistNode *node; + gtkblist = GAIM_GTK_BLIST(list); if(!gtkblist || !gtkblist->treeview) return; - GaimBlistNode *node = list->root; + node = list->root; while (node) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |