From ac5cda8daa996d05480b6e8dc5d84bf754ac313a Mon Sep 17 00:00:00 2001 From: Subhra Sankha Sarkar Date: Wed, 11 Nov 2020 00:30:01 +0530 Subject: [PATCH] Fix for file naming issue for sim:nxffs configuration --- testing/nxffs/nxffs_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/nxffs/nxffs_main.c b/testing/nxffs/nxffs_main.c index 0fbd31e2e..4ab7edbd9 100644 --- a/testing/nxffs/nxffs_main.c +++ b/testing/nxffs/nxffs_main.c @@ -205,7 +205,7 @@ static inline char nxffs_randchar(void) int value = rand() % 63; if (value == 0) { - return '/'; + return '0'; } else if (value <= 10) {