From: <nos...@us...> - 2006-08-20 17:10:21
|
Revision: 16907 Author: nosnilmot Date: 2006-08-20 10:10:15 -0700 (Sun, 20 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16907&view=rev Log Message: ----------- Fix a warning: gntrequest.c:250: warning: ISO C90 forbids mixed declarations and code Amazing what a stray semicolon can do Modified Paths: -------------- trunk/console/gntrequest.c Modified: trunk/console/gntrequest.c =================================================================== --- trunk/console/gntrequest.c 2006-08-20 17:00:38 UTC (rev 16906) +++ trunk/console/gntrequest.c 2006-08-20 17:10:15 UTC (rev 16907) @@ -246,7 +246,7 @@ } else if (type == GAIM_REQUEST_FIELD_CHOICE) { - GntWidget *combo = field->ui_data;; + GntWidget *combo = field->ui_data; int id; id = GPOINTER_TO_INT(gnt_combo_box_get_selected_data(GNT_COMBO_BOX(combo))); gaim_request_field_choice_set_value(field, id); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |