fs/mmap/fs_mmap.c: Fix a syslog format error

This commit is contained in:
YAMAMOTO Takashi 2020-11-20 11:59:51 +09:00 committed by Xiang Xiao
parent bf9b36cf92
commit bc9e28eb35

@ -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;
}