You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/11/11 03:10:01 UTC

[incubator-nuttx-apps] branch master updated: Fix for file naming issue for sim:nxffs configuration

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 <ru...@gmail.com>
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)
     {