fs/nxffs/nxffs_stat.c: Fix syslog formats
This commit is contained in:
parent
7df9d89d54
commit
d543f7f16f
@ -148,7 +148,7 @@ int nxffs_stat(FAR struct inode *mountpt, FAR const char *relpath,
|
||||
ret = nxffs_findinode(volume, relpath, &entry);
|
||||
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;
|
||||
}
|
||||
|
||||
@ -198,7 +198,7 @@ int nxffs_fstat(FAR const struct file *filep, FAR struct stat *buf)
|
||||
FAR struct nxffs_ofile_s *ofile;
|
||||
int ret;
|
||||
|
||||
finfo("Buf %s\n", buf);
|
||||
finfo("Buf %p\n", buf);
|
||||
DEBUGASSERT(filep != NULL && buf != NULL);
|
||||
|
||||
/* Recover the open file state from the struct file instance */
|
||||
|
Loading…
Reference in New Issue
Block a user