# HG changeset patch # User Stu Tomlinson # Date 1156093815 0 # Node ID b02b7017930fd36a0195bb800de5762b65fa17e3 # Parent eec43f2ef6339d79acd94acf7b52d45d1521b259 [gaim-migrate @ 16907] Fix a warning: gntrequest.c:250: warning: ISO C90 forbids mixed declarations and code Amazing what a stray semicolon can do committer: Tailor Script diff -r eec43f2ef633 -r b02b7017930f console/gntrequest.c --- a/console/gntrequest.c Sun Aug 20 17:00:38 2006 +0000 +++ b/console/gntrequest.c Sun Aug 20 17:10:15 2006 +0000 @@ -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);