fs/vfs: Remove warning generated by fcntl()

This commit is contained in:
Gregory Nutt 2017-10-02 11:46:08 -06:00
parent 9ea215f2e4
commit 9232da4af8

View File

@ -77,7 +77,7 @@
#if CONFIG_NFILE_DESCRIPTORS > 0
int file_vfcntl(FAR struct file *filep, int cmd, va_list ap)
{
int ret;
int ret = -EINVAL;
/* Was this file opened ? */
@ -205,7 +205,6 @@ int file_vfcntl(FAR struct file *filep, int cmd, va_list ap)
break;
default:
ret = -EINVAL;
break;
}