apps/system/usbmsc: Fix some corrupted conditional compilation that crept in. Looks like some automatated update gone awry.

This commit is contained in:
Gregory Nutt 2014-12-28 17:09:35 -06:00
parent 4cc9c1901b
commit 354524c8c2

View File

@ -587,15 +587,15 @@ int msconn_main(int argc, char *argv[])
* device. This program is only available if CONFIG_NSH_BUILTIN_APPS * device. This program is only available if CONFIG_NSH_BUILTIN_APPS
* is defined in the NuttX configuration. In that case, this program can * is defined in the NuttX configuration. In that case, this program can
* be executed by entering the "msdis" command at the NSH console. * be executed by entering the "msdis" command at the NSH console.
#ifdef CONFIG_BUILD_KERNEL
* *
int main(int argc, FAR char **argv)
****************************************************************************/ ****************************************************************************/
#else
#ifdef CONFIG_NSH_BUILTIN_APPS #ifdef CONFIG_NSH_BUILTIN_APPS
#endif #ifdef CONFIG_BUILD_KERNEL
int main(int argc, FAR char **argv)
#else
int msdis_main(int argc, char *argv[]) int msdis_main(int argc, char *argv[])
#endif
{ {
/* First check if the USB mass storage device is already connected */ /* First check if the USB mass storage device is already connected */