enventor - return a value that indicates the success actually.

This commit is contained in:
ChunEon Park 2013-08-16 00:20:28 +09:00
parent 8bbcc5da08
commit a34d85f9fa
1 changed files with 3 additions and 2 deletions

View File

@ -27,8 +27,9 @@ static const char *EDJE_CC_CMD;
static Eina_Bool
rebuild_edc()
{
system(EDJE_CC_CMD);
return EINA_TRUE;
int ret = system(EDJE_CC_CMD);
if (ret == -1) return EINA_FALSE;
else return EINA_TRUE;
}
static Eina_Bool