fs/binfs/fs_binfs.c: Fix a syslog format
This commit is contained in:
parent
e8695d61ca
commit
e58a966dd6
@ -193,7 +193,8 @@ static ssize_t binfs_read(FAR struct file *filep,
|
|||||||
{
|
{
|
||||||
/* Reading is not supported. Just return end-of-file */
|
/* 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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user