eet - dump - if group type is not a handled type, assume unknown

fixes CID 1039307
This commit is contained in:
Carsten Haitzler 2014-02-13 20:08:59 +09:00
parent 0ad92d81e2
commit b11ccd9787
1 changed files with 1 additions and 1 deletions

View File

@ -594,7 +594,7 @@ eet_node_dump_group_start(int level,
int chnk_type;
chnk_type = (group_type >= EET_G_UNKNOWN && group_type <= EET_G_HASH) ?
group_type : EET_G_LAST;
group_type : EET_G_UNKNOWN;
eet_node_dump_level(level, dumpfunc, dumpdata);
dumpfunc(dumpdata, "group \"");