devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=652e2f688bb7c7057e69a4740181c12f17aa4e1d
commit 652e2f688bb7c7057e69a4740181c12f17aa4e1d Author: Chris Michael <cp.mich...@samsung.com> Date: Mon Nov 3 08:17:34 2014 -0500 ecore-tests: Fix formatting Summary: No functional changes, just formatting. Signed-off-by: Chris Michael <cp.mich...@samsung.com> --- src/tests/ecore/ecore_test_ecore_file.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/tests/ecore/ecore_test_ecore_file.c b/src/tests/ecore/ecore_test_ecore_file.c index dfeb72d..cd06d20 100644 --- a/src/tests/ecore/ecore_test_ecore_file.c +++ b/src/tests/ecore/ecore_test_ecore_file.c @@ -18,10 +18,8 @@ void _writeToFile(char *filePath, char *text) { FILE *f = fopen(filePath, "r+"); - if(f == NULL) - { - f = fopen(filePath, "w"); - } + if (f == NULL) + f = fopen(filePath, "w"); fail_if(f == NULL); fprintf(f, "%s\n", text); fclose(f); --