fs/unionfs/fs_unionfs.c: Fix syslog formats

This commit is contained in:
YAMAMOTO Takashi 2020-11-25 20:13:18 +09:00 committed by Xiang Xiao
parent e58a966dd6
commit cde04a6523
1 changed files with 2 additions and 2 deletions

View File

@ -1328,7 +1328,7 @@ static int unionfs_fstat(FAR const struct file *filep, FAR struct stat *buf)
FAR const struct mountpt_operations *ops;
int ret = -EPERM;
finfo("filep=%p buf=%p\n");
finfo("filep=%p buf=%p\n", filep, buf);
/* Recover the open file data from the struct file instance */
@ -2473,7 +2473,7 @@ static int unionfs_rename(FAR struct inode *mountpt,
int tmp;
int ret = -ENOENT;
finfo("oldrelpath: %s newrelpath\n", oldrelpath, newrelpath);
finfo("oldrelpath: %s newrelpath: %s\n", oldrelpath, newrelpath);
/* Recover the union file system data from the struct inode instance */