Fix for file naming issue for sim:nxffs configuration

This commit is contained in:
Subhra Sankha Sarkar 2020-11-11 00:30:01 +05:30 committed by Xiang Xiao
parent d6b67eb05e
commit ac5cda8daa

View File

@ -205,7 +205,7 @@ static inline char nxffs_randchar(void)
int value = rand() % 63;
if (value == 0)
{
return '/';
return '0';
}
else if (value <= 10)
{