summaryrefslogtreecommitdiff
path: root/libhurd-mm/mprotect.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhurd-mm/mprotect.c')
-rw-r--r--libhurd-mm/mprotect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhurd-mm/mprotect.c b/libhurd-mm/mprotect.c
index 003feba..10cf1de 100644
--- a/libhurd-mm/mprotect.c
+++ b/libhurd-mm/mprotect.c
@@ -34,7 +34,7 @@ mprotect (void *addr, size_t length, int prot)
uintptr_t start = (uintptr_t) addr;
uintptr_t end = start + length - 1;
- debug (5, "(%p, %x (%p),%s%s)", addr, length, end,
+ debug (5, "(%p, %x (%p),%s%s)", addr, length, (void *) end,
prot == 0 ? " PROT_NONE" : (prot & PROT_READ ? " PROT_READ" : ""),
prot & PROT_WRITE ? " PROT_WRITE" : "");