This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new ac5cda8 Fix for file naming issue for sim:nxffs configuration
ac5cda8 is described below
commit ac5cda8daa996d05480b6e8dc5d84bf754ac313a
Author: Subhra Sankha Sarkar <[email protected]>
AuthorDate: Wed Nov 11 00:30:01 2020 +0530
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 0fbd31e..4ab7edb 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)
{