must be unsigned for base+limit check to to work

This commit is contained in:
Ben Gras 2009-01-22 13:05:20 +00:00
parent 36c12c1251
commit 539192f4c3

View 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;