fs/nxffs/nxffs_write.c: Fix a syslog format

This commit is contained in:
YAMAMOTO Takashi 2020-12-05 14:10:54 +09:00 committed by Xiang Xiao
parent 5bead4aa37
commit 45444edc16
1 changed files with 2 additions and 2 deletions

View File

@ -882,8 +882,8 @@ int nxffs_wrverify(FAR struct nxffs_volume_s *volume, size_t size)
* the block has uncorrectable bit errors.
*/
ferr("ERROR: Failed to read block %d: %d\n",
volume->ioblock, -ret);
ferr("ERROR: Failed to read block %jd: %d\n",
(intmax_t)volume->ioblock, -ret);
}
/* Search to the very end of this block if we have to */