This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 889c33277cb2cec3fe6caedf4cdb16cabdf37843 Author: YAMAMOTO Takashi <yamam...@midokura.com> AuthorDate: Sun Nov 22 09:50:48 2020 +0900 fs/nxffs/nxffs_pack.c: Fix a syslog format --- fs/nxffs/nxffs_pack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/nxffs/nxffs_pack.c b/fs/nxffs/nxffs_pack.c index 4216d41..aefff87 100644 --- a/fs/nxffs/nxffs_pack.c +++ b/fs/nxffs/nxffs_pack.c @@ -709,7 +709,7 @@ static int nxffs_wrinodehdr(FAR struct nxffs_volume_s *volume, ret = nxffs_updateinode(volume, &pack->dest.entry); if (ret < 0) { - ferr("ERROR: Failed to update inode info: %s\n", -ret); + ferr("ERROR: Failed to update inode info: %d\n", -ret); } }