diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-06-25 14:54:38 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-06-25 14:56:48 -0400 |
commit | cbc726ac56040ea3353f2404274836ec1b9a3a32 (patch) | |
tree | 28e6faf6ad76fab73eaea0e375448501610af7db /src/bin/edje | |
parent | f259ff8d4cf30ce2c23137702af04e123c599f99 (diff) |
edje_cc: Fix formatting
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'src/bin/edje')
-rw-r--r-- | src/bin/edje/edje_cc_parse.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/bin/edje/edje_cc_parse.c b/src/bin/edje/edje_cc_parse.c index 49da4766a6..9c4e6bcc08 100644 --- a/src/bin/edje/edje_cc_parse.c +++ b/src/bin/edje/edje_cc_parse.c | |||
@@ -1842,11 +1842,13 @@ strstrip(const char *in, char *out, size_t size) | |||
1842 | int | 1842 | int |
1843 | get_param_index(char *str) | 1843 | get_param_index(char *str) |
1844 | { | 1844 | { |
1845 | int index ; | 1845 | int index; |
1846 | for(index = 0; index < get_arg_count(); index++) | 1846 | |
1847 | { | 1847 | for(index = 0; index < get_arg_count(); index++) |
1848 | if(!strcmp(str,_parse_param_get(index))) | 1848 | { |
1849 | return index; | 1849 | if(!strcmp(str,_parse_param_get(index))) |
1850 | } | 1850 | return index; |
1851 | return -1; | 1851 | } |
1852 | |||
1853 | return -1; | ||
1852 | } | 1854 | } |