Fix a typo preventing the parsing of unsigned int.

SVN revision: 34578
This commit is contained in:
Cedric BAIL 2008-05-15 14:03:09 +00:00
parent ac834a2726
commit 8040f27451
1 changed files with 1 additions and 1 deletions

View File

@ -1862,7 +1862,7 @@ _eet_data_dump_parse(Eet_Dictionary *ed,
n->type = EET_T_USHORT;
sscanf(tok4, "%hu", &(n->data.us));
}
else if (!strcmp(tok3, "unit:"))
else if (!strcmp(tok3, "uint:"))
{
n->type = EET_T_UINT;
sscanf(tok4, "%u", &(n->data.ui));