fix 'unused value' warning

This commit is contained in:
Hartmut Holzgraefe 2015-02-13 16:28:57 +01:00
parent b4cb252f91
commit 792d4e9c8c

View File

@ -1253,7 +1253,7 @@ char* skygw_get_affected_fields(GWBUF* buf)
List_iterator<Item> ilist(lex->current_select->item_list);
item = (Item*)ilist.next();
for (item; item != NULL; item=(Item*)ilist.next())
for (; item != NULL; item=(Item*)ilist.next())
{
itype = item->type();