nsh_fscmds.c: Fix CONFIG_FS_SHM -> CONFIG_FS_SHMFS

The define macro was wrong
This commit is contained in:
Ville Juven 2024-01-31 15:54:28 +02:00 committed by Xiang Xiao
parent 0968264ac0
commit 0f31a8d98e

View File

@ -182,7 +182,7 @@ static int ls_handler(FAR struct nsh_vtbl_s *vtbl, FAR const char *dirpath,
details[0] = 'f';
}
#endif
#ifdef CONFIG_FS_SHM
#ifdef CONFIG_FS_SHMFS
else if (S_ISSHM(buf.st_mode))
{
details[0] = 'h';