From ae535554a6ddb0a5f88742d524ee71f891ea1e28 Mon Sep 17 00:00:00 2001 From: codedraughtsman Date: Mon, 31 May 2021 16:29:11 +1200 Subject: [PATCH] Fixed timothy_tests/quick_tests One of the string buffers was to small and would not compile. The string buffer's size was increased and it all compliles. Note: the tests still fail due to a unrelated segfault, currently fixing this. --- direct/test-framework/timothy_tests/quick_tests/lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/test-framework/timothy_tests/quick_tests/lib.c b/direct/test-framework/timothy_tests/quick_tests/lib.c index 5673ff1..2063d2c 100644 --- a/direct/test-framework/timothy_tests/quick_tests/lib.c +++ b/direct/test-framework/timothy_tests/quick_tests/lib.c @@ -136,7 +136,7 @@ int delete_dir(char *dir_name) yaffs_DIR *d; struct yaffs_dirent *de; struct yaffs_stat s; - char str[100]; + char str[300]; d = yaffs_opendir(dir_name); //printf("%s\n",dir_name); if(!d) -- 2.30.2