diff --git a/fs/vfs/fs_fcntl.c b/fs/vfs/fs_fcntl.c index d9616a7d529..e1bf25bf1f0 100644 --- a/fs/vfs/fs_fcntl.c +++ b/fs/vfs/fs_fcntl.c @@ -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; }