cast eina_list_count() in flowlayout, not entire expression

CID 1267211
This commit is contained in:
Mike Blumenkrantz 2016-03-22 11:51:09 -04:00
parent e919734df7
commit 3e15daabd1
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ e_flowlayout_pack_end(Evas_Object *obj, Evas_Object *child)
sd->items = eina_list_append(sd->items, child);
sd->changed = 1;
if (sd->frozen <= 0) _e_flowlayout_smart_reconfigure(sd);
return (int)(eina_list_count(sd->items) - 1);
return (int)eina_list_count(sd->items) - 1;
}
E_API int