From 539192f4c338d476f35623399e1b5570ac74b20c Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Thu, 22 Jan 2009 13:05:20 +0000 Subject: [PATCH] must be unsigned for base+limit check to to work --- servers/vm/utility.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/vm/utility.c b/servers/vm/utility.c index 7ddd253bc..47ed47a40 100644 --- a/servers/vm/utility.c +++ b/servers/vm/utility.c @@ -60,7 +60,7 @@ struct memory *mem_chunks; /* store mem chunks here */ /* Initialize the free memory list from the 'memory' boot variable. Translate * the byte offsets and sizes in this list to clicks, properly truncated. */ - long base, size, limit; + phys_bytes base, size, limit; int i; struct memory *memp; -- 2.44.0