X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_mkdir.c;h=a0b29b776cf529315f58c499a3b586b88dd47532;hp=aedaa8024b5dd4f2bec1db0fee472b5c86b91b09;hb=03704f115fc239e6a7df6eeb6da2716aec3318f8;hpb=74241853717ad90835c1a0fbeed21957eeab3078 diff --git a/direct/timothy_tests/quick_tests/test_yaffs_mkdir.c b/direct/timothy_tests/quick_tests/test_yaffs_mkdir.c index aedaa80..a0b29b7 100644 --- a/direct/timothy_tests/quick_tests/test_yaffs_mkdir.c +++ b/direct/timothy_tests/quick_tests/test_yaffs_mkdir.c @@ -13,18 +13,18 @@ #include "test_yaffs_mkdir.h" -static int handle = 0; +static int output = -1; int test_yaffs_mkdir(void) { - handle = yaffs_mkdir("/yaffs2/new_directory/",O_CREAT | O_RDWR); - return handle; + output = yaffs_mkdir("/yaffs2/new_directory/",O_CREAT | O_RDWR); + return output; } int test_yaffs_mkdir_clean(void) { - if (handle >= 0){ + if (output >= 0){ return yaffs_rmdir("/yaffs2/new_directory/"); } else { return 1; /* the file failed to open so there is no need to close it */