mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-10-18 17:32:09 +08:00
Fixed coding std issues
This commit is contained in:

committed by
Xiang Xiao

parent
bd0ad68da8
commit
36b1be0609
@@ -119,9 +119,11 @@ int nsh_romfsetc(void)
|
||||
CONFIG_NSH_ROMFSMOUNTPT, MOUNT_DEVNAME);
|
||||
|
||||
#if defined(CONFIG_NSH_CROMFSETC)
|
||||
ret = mount(MOUNT_DEVNAME, CONFIG_NSH_ROMFSMOUNTPT, "cromfs", MS_RDONLY, NULL);
|
||||
ret = mount(MOUNT_DEVNAME, CONFIG_NSH_ROMFSMOUNTPT, "cromfs", MS_RDONLY,
|
||||
NULL);
|
||||
#else
|
||||
ret = mount(MOUNT_DEVNAME, CONFIG_NSH_ROMFSMOUNTPT, "romfs", MS_RDONLY, NULL);
|
||||
ret = mount(MOUNT_DEVNAME, CONFIG_NSH_ROMFSMOUNTPT, "romfs", MS_RDONLY,
|
||||
NULL);
|
||||
#endif
|
||||
if (ret < 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user