fs/mmap/fs_anonmap.c: Remove void * arithmetic

Signed-off-by: Jukka Laitinen <jukkax@ssrc.tii.ae>
This commit is contained in:
Jukka Laitinen 2023-01-13 14:52:11 +04:00 committed by Xiang Xiao
parent 1f95cfdde8
commit 3577d2f055

View File

@ -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");