mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 09:49:21 +08:00
fs/mmap/fs_anonmap.c: Remove void * arithmetic
Signed-off-by: Jukka Laitinen <jukkax@ssrc.tii.ae>
This commit is contained in:
parent
1f95cfdde8
commit
3577d2f055
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ static int unmap_anonymous(FAR struct task_group_s *group,
|
|||
* simulate the unmapping.
|
||||
*/
|
||||
|
||||
offset = start - entry->vaddr;
|
||||
offset = (uintptr_t)start - (uintptr_t)entry->vaddr;
|
||||
if (offset + length < entry->length)
|
||||
{
|
||||
ferr("ERROR: Cannot umap without unmapping to the end\n");
|
||||
|
|
Loading…
Reference in a new issue