eolian generator - fix num of types handled

there are only 2 types in the ftype array... not 3!

fix CID 1232782
This commit is contained in:
Carsten Haitzler 2014-08-28 08:44:27 +09:00
parent 49af128d5c
commit 94f9d106c8
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ eo_header_generate(const Eolian_Class *class, Eina_Strbuf *buf)
}
int i;
for (i = 0; i < 3; i++)
for (i = 0; i < 2; i++)
{
itr = eolian_class_functions_get(class, ftype_order[i]);
EINA_ITERATOR_FOREACH(itr, fid)