mirror of
https://github.com/apache/nuttx.git
synced 2026-05-25 18:27:56 +08:00
fs/binfs/fs_binfs.c: Fix a syslog format
This commit is contained in:
committed by
Xiang Xiao
parent
e8695d61ca
commit
e58a966dd6
+2
-1
@@ -193,7 +193,8 @@ static ssize_t binfs_read(FAR struct file *filep,
|
||||
{
|
||||
/* Reading is not supported. Just return end-of-file */
|
||||
|
||||
finfo("Read %zu bytes from offset %d\n", buflen, filep->f_pos);
|
||||
finfo("Read %zu bytes from offset %jd\n",
|
||||
buflen, (intmax_t)filep->f_pos);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user