edje : fix the typo in svg loader.
authorSubhransu Mohanty <sub.mohanty@samsung.com>
Thu, 9 Jun 2016 04:26:33 +0000 (13:26 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Thu, 9 Jun 2016 04:26:33 +0000 (13:26 +0900)
Reviewers: SanghyeonLee, cedric, jpeg

Reviewed By: jpeg

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D4027

src/bin/edje/edje_svg_loader.c

index 1ded253..29cd788 100644 (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;                           \
          }                                                              \