edje_cc_script: remove build warning

Summary: initiate pointer var with NULL to remove build warning

Reviewers: conr2d

Subscribers: cedric, jpeg

Differential Revision: https://phab.enlightenment.org/D5423
This commit is contained in:
Sungtaek Hong 2017-11-04 14:41:44 +09:00 committed by Jeeyong Um
parent b7066e3352
commit 70b23b5fc7
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ code_parse(Code *code)
static void
code_parse_internal(Code *code)
{
Code_Symbol *sym = NULL, *func;
Code_Symbol *sym = NULL, *func = NULL;
Token *token, *tmp;
char *begin = code->shared;
char *end = begin + strlen(begin);