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=52c88ad73ce7cdaa832374109efa2e869ed727f0;hp=d7237a89cbaec6e8732c4c1a4f2bc76dcc567b07;hb=6648cbf52d6695755941ff8607fd7a0cda542e05;hpb=1c8604a29f8ca073e1f5129c58e201a4b42bc192 diff --git a/direct/timothy_tests/quick_tests/test_yaffs_open.c b/direct/timothy_tests/quick_tests/test_yaffs_open.c index d7237a8..52c88ad 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_open.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_open.c @@ -1,7 +1,7 @@ /* * YAFFS: Yet another FFS. A NAND-flash specific file system. * - * Copyright (C) 2002-2010 Aleph One Ltd. + * Copyright (C) 2002-2011 Aleph One Ltd. * for Toby Churchill Ltd and Brightstar Engineering * * Created by Timothy Manning @@ -13,21 +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_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){ - 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 */ } }