From cde04a6523b4dede7b91d6f2aa06cd1c23a72923 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 25 Nov 2020 20:13:18 +0900 Subject: [PATCH] fs/unionfs/fs_unionfs.c: Fix syslog formats --- fs/unionfs/fs_unionfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/unionfs/fs_unionfs.c b/fs/unionfs/fs_unionfs.c index 8548ece706..7ccb354185 100644 --- a/fs/unionfs/fs_unionfs.c +++ b/fs/unionfs/fs_unionfs.c @@ -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 */