mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Eliminated a compiler warning
svn path=/trunk/; revision=69
This commit is contained in:
parent
1d9a6c728c
commit
e1d692c393
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ asmlinkage void _main(boot_param* _bp)
|
||||||
DbgPrint("Reduce the amount of uninitialized data\n");
|
DbgPrint("Reduce the amount of uninitialized data\n");
|
||||||
for(;;);
|
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",
|
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]));
|
bp.module_length[0],PAGE_ROUND_UP(bp.module_length[0]));
|
||||||
start1 = start+PAGE_ROUND_UP(bp.module_length[1]);
|
start1 = start+PAGE_ROUND_UP(bp.module_length[1]);
|
||||||
|
|
Loading…
Reference in a new issue