mirror of
https://github.com/apache/nuttx.git
synced 2026-08-01 20:28:58 +00:00
fs/mmap/fs_mmap.c: Fix a syslog format error
This commit is contained in:
parent
bf9b36cf92
commit
bc9e28eb35
1 changed files with 1 additions and 1 deletions
|
|
@ -152,7 +152,7 @@ FAR void *mmap(FAR void *start, size_t length, int prot, int flags,
|
|||
|
||||
if (length == 0)
|
||||
{
|
||||
ferr("ERROR: Invalid length, length=%d\n", length);
|
||||
ferr("ERROR: Invalid length, length=%zu\n", length);
|
||||
errcode = EINVAL;
|
||||
goto errout;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue