edc_parser: fix typos.

This commit is contained in:
Hermet Park 2016-07-21 21:03:59 +09:00
parent 32bcf8b985
commit f18efb732a
1 changed files with 2 additions and 2 deletions

View File

@ -2053,7 +2053,7 @@ parser_first_group_name_get(parser_data *pd, Evas_Object *entry)
char *slash = strstr(p, "\\");
if (!slash) break;
char *eol = strstr(p, "\"");
char *eol = strstr(p, "\n");
if (!eol) goto end;
if (eol < slash) break;
@ -2385,7 +2385,7 @@ parser_group_list_get(parser_data *pd, Evas_Object *entry)
char *slash = strstr(p, "\\");
if (!slash) break;
char *eol = strstr(p, "\"");
char *eol = strstr(p, "\n");
if (!eol) goto end;
if (eol < slash) break;