jaehyun pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=0600579464dc5e9f7e7999f67090db0e7fccf7ce

commit 0600579464dc5e9f7e7999f67090db0e7fccf7ce
Author: Jaehyun Cho <jae_hyun....@samsung.com>
Date:   Thu Sep 17 16:04:30 2015 +0900

    edc_parser: Fix compile error.
---
 src/lib/edc_parser.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/lib/edc_parser.c b/src/lib/edc_parser.c
index 66be0ad..04aa803 100644
--- a/src/lib/edc_parser.c
+++ b/src/lib/edc_parser.c
@@ -288,7 +288,8 @@ cur_state_thread_blocking(void *data, Ecore_Thread *thread 
EINA_UNUSED)
 
                   /* Exception cases like: desc {image.normal: "img";} */
                   int alpha_present = 0;
-                  for (char *string_itr = name_begin; (string_itr > p) && 
(!alpha_present); string_itr--)
+                  char *string_itr;
+                  for (string_itr = name_begin; (string_itr > p) && 
(!alpha_present); string_itr--)
                     alpha_present = isalpha((int)*string_itr);
 
                   if (alpha_present && desc_idx == 0)

-- 


Reply via email to