From 96e4e2f4d1dd9a8634088dcd19a9e343b711f7ea Mon Sep 17 00:00:00 2001 From: Frans Kaashoek Date: Thu, 30 Aug 2018 13:46:48 -0400 Subject: thanks eyalz800 --- memlayout.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'memlayout.h') diff --git a/memlayout.h b/memlayout.h index 70c1968..d1615f7 100644 --- a/memlayout.h +++ b/memlayout.h @@ -9,7 +9,7 @@ #define KERNLINK (KERNBASE+EXTMEM) // Address where kernel is linked #define V2P(a) (((uint) (a)) - KERNBASE) -#define P2V(a) (((void *) (a)) + KERNBASE) +#define P2V(a) ((void *)(((char *) (a)) + KERNBASE)) #define V2P_WO(x) ((x) - KERNBASE) // same as V2P, but without casts #define P2V_WO(x) ((x) + KERNBASE) // same as P2V, but without casts -- cgit v1.2.3