From: Ben Gras Date: Thu, 22 Jan 2009 13:05:20 +0000 (+0000) Subject: must be unsigned for base+limit check to to work X-Git-Tag: v3.1.4~126 X-Git-Url: http://zhaoyanbai.com/repos/%22http:/www.isc.org/static/host.html?a=commitdiff_plain;h=539192f4c338d476f35623399e1b5570ac74b20c;p=minix.git must be unsigned for base+limit check to to work --- 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;