seoz pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=34f3e57d9e752cf155426436f4528d9a1cc872b2
commit 34f3e57d9e752cf155426436f4528d9a1cc872b2 Author: Daniel Juyung Seo <[email protected]> Date: Tue Feb 4 00:50:36 2014 +0900 enventor - fixed build warnings in build.c --- src/bin/build.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/bin/build.c b/src/bin/build.c index 72ca922..7e78d7f 100644 --- a/src/bin/build.c +++ b/src/bin/build.c @@ -35,9 +35,13 @@ build_edc() { char *bp = NULL; size_t size; - /*FILE *stream =*/ open_memstream(&bp, &size); + FILE *stream = open_memstream(&bp, &size); + (void)stream; //stderr = &(*stream); - /*int ret =*/ system(EDJE_CC_CMD); + + int ret = system(EDJE_CC_CMD); + if (ret == -1) + EINA_LOG_ERR("error running %s command.", EDJE_CC_CMD); // if (bp) // printf("@@@@ buf = %s, size = %d\n", bp, size); --
