X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;f=direct%2Ftimothy_tests%2Fquick_tests%2Ftest_yaffs_mkdir.c;h=a0b29b776cf529315f58c499a3b586b88dd47532;hb=1d34c75c7f1f69ce5a746917b76d90c22e91ffe2;hp=aedaa8024b5dd4f2bec1db0fee472b5c86b91b09;hpb=6ec15829a2deee7512bce78387547393585c5dd2;p=yaffs2.git 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 */