X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_open.c;h=af7b7542aeccb61fa60249fdbde023286f45b830;hp=89c7492701ce8876942650b45dafdbcc1e4cfd06;hb=716faf42637fc29ca3d2510d8a47fb2516f794e1;hpb=a11dd4924d16a4c3d6df13a4182f7729a1478a53 diff --git a/direct/timothy_tests/quick_tests/test_yaffs_open.c b/direct/timothy_tests/quick_tests/test_yaffs_open.c index 89c7492..af7b754 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_open.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_open.c @@ -13,22 +13,21 @@ #include "test_yaffs_open.h" -static int handle=0; +static int handle = 0; -int test_yaffs_open(void){ - - handle=yaffs_open(FILE_PATH,O_CREAT | O_TRUNC| O_RDWR, FILE_MODE); +int test_yaffs_open(void) +{ + handle = yaffs_open(FILE_PATH,O_CREAT | O_RDWR, FILE_MODE); return handle; } -int test_yaffs_open_clean(void){ - handle=0; - if (handle >=0){ +int test_yaffs_open_clean(void) +{ + if (handle >= 0){ return yaffs_close(handle); - } - else { - return 1; /* the file failed to open so there is no need to close it*/ + } else { + return 1; /* the file failed to open so there is no need to close it */ } }