edje : fix the typo in svg loader.

Reviewers: SanghyeonLee, cedric, jpeg

Reviewed By: jpeg

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D4027
This commit is contained in:
Subhransu Mohanty 2016-06-09 13:26:33 +09:00 committed by Jean-Philippe Andre
parent 088043e77a
commit ef84367fa9
1 changed files with 1 additions and 1 deletions

View File

@ -1067,7 +1067,7 @@ static const struct {
int sz = strlen(name); \
\
for (i = 0; i < sizeof (Tags_Array) / sizeof(Tags_Array[0]); i++) \
if (group_tags[i].sz - 1 == sz && !strncmp(Tags_Array[i].tag, name, sz)) \
if (Tags_Array[i].sz - 1 == sz && !strncmp(Tags_Array[i].tag, name, sz)) \
{ \
return Tags_Array[i].tag_handler; \
} \