fs/nxffs/nxffs_stat.c: Fix syslog formats

This commit is contained in:
YAMAMOTO Takashi 2020-11-22 09:58:50 +09:00 committed by Xiang Xiao
parent 7df9d89d54
commit d543f7f16f

View File

@ -148,7 +148,7 @@ int nxffs_stat(FAR struct inode *mountpt, FAR const char *relpath,
ret = nxffs_findinode(volume, relpath, &entry); ret = nxffs_findinode(volume, relpath, &entry);
if (ret < 0) if (ret < 0)
{ {
ferr("ERROR: Inode '%s' not found: %d\n", -ret); ferr("ERROR: Inode '%s' not found: %d\n", relpath, -ret);
goto errout_with_semaphore; goto errout_with_semaphore;
} }
@ -198,7 +198,7 @@ int nxffs_fstat(FAR const struct file *filep, FAR struct stat *buf)
FAR struct nxffs_ofile_s *ofile; FAR struct nxffs_ofile_s *ofile;
int ret; int ret;
finfo("Buf %s\n", buf); finfo("Buf %p\n", buf);
DEBUGASSERT(filep != NULL && buf != NULL); DEBUGASSERT(filep != NULL && buf != NULL);
/* Recover the open file state from the struct file instance */ /* Recover the open file state from the struct file instance */