Fix vfs/fs_fstatfs.c:60:21: warning: variable 'inode' set but not used

60 |   FAR struct inode *inode;
      |                     ^~~~~

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2024-07-12 23:28:59 +08:00 committed by Xiang Xiao
parent 43223124ec
commit 744da99250

View File

@ -57,7 +57,9 @@
int fstatfs(int fd, FAR struct statfs *buf)
{
FAR struct file *filep;
#ifndef CONFIG_DISABLE_MOUNTPOINT
FAR struct inode *inode;
#endif
int ret;
DEBUGASSERT(buf != NULL);
@ -72,11 +74,11 @@ int fstatfs(int fd, FAR struct statfs *buf)
goto errout;
}
#ifndef CONFIG_DISABLE_MOUNTPOINT
/* Get the inode from the file structure */
inode = filep->f_inode;
#ifndef CONFIG_DISABLE_MOUNTPOINT
/* The way we handle the stat depends on the type of inode that we
* are dealing with.
*/