]> Zhao Yanbai Git Server - minix.git/commitdiff
must be unsigned for base+limit check to to work
authorBen Gras <ben@minix3.org>
Thu, 22 Jan 2009 13:05:20 +0000 (13:05 +0000)
committerBen Gras <ben@minix3.org>
Thu, 22 Jan 2009 13:05:20 +0000 (13:05 +0000)
servers/vm/utility.c

index 7ddd253bce8fa9c073e6e2171426bae2f5ba6a0b..47ed47a40fab18014635cd0710c36edabc8d370b 100644 (file)
@@ -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;