Eliminated a compiler warning

svn path=/trunk/; revision=69
This commit is contained in:
Rex Jolliff 1998-10-12 21:02:34 +00:00
parent 1d9a6c728c
commit e1d692c393

View file

@ -139,7 +139,7 @@ asmlinkage void _main(boot_param* _bp)
DbgPrint("Reduce the amount of uninitialized data\n");
for(;;);
}
DPRINT("MmGetPhysicalAddress(start) = %x\n",MmGetPhysicalAddress(start));
DPRINT("MmGetPhysicalAddress(start) = %x\n",MmGetPhysicalAddress((void *)start));
DPRINT("bp.module_length[0] %x PAGE_ROUND_UP(bp.module_length[0]) %x\n",
bp.module_length[0],PAGE_ROUND_UP(bp.module_length[0]));
start1 = start+PAGE_ROUND_UP(bp.module_length[1]);