edje_cc: Fix formatting

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-06-25 14:54:38 -04:00
parent f259ff8d4c
commit cbc726ac56
1 changed files with 9 additions and 7 deletions

View File

@ -1842,11 +1842,13 @@ strstrip(const char *in, char *out, size_t size)
int
get_param_index(char *str)
{
int index ;
for(index = 0; index < get_arg_count(); index++)
{
if(!strcmp(str,_parse_param_get(index)))
return index;
}
return -1;
int index;
for(index = 0; index < get_arg_count(); index++)
{
if(!strcmp(str,_parse_param_get(index)))
return index;
}
return -1;
}