Re-fix a pointer/integer warning.

This commit is contained in:
Peter Wemm 2002-02-27 09:58:06 +00:00
parent d1693e1701
commit 30d1ca27fe
2 changed files with 2 additions and 2 deletions

View File

@ -380,7 +380,7 @@ bios16(struct bios_args *args, char *fmt, ...)
args->seg.code32.limit = 0xffff;
ptd = (u_int *)rcr3();
if (ptd == IdlePTD) {
if (ptd == (u_int *)IdlePTD) {
/*
* no page table, so create one and install it.
*/

View File

@ -380,7 +380,7 @@ bios16(struct bios_args *args, char *fmt, ...)
args->seg.code32.limit = 0xffff;
ptd = (u_int *)rcr3();
if (ptd == IdlePTD) {
if (ptd == (u_int *)IdlePTD) {
/*
* no page table, so create one and install it.
*/