david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Fix printf format warning error

This commit is contained in:
Michael Brown 2006-05-25 00:02:27 +00:00
parent 3bd3c13c7b
commit f939ff7cb5
1 changed files with 3 additions and 2 deletions

View File

@ -73,8 +73,9 @@ void hide_etherboot ( void ) {
hidden_regions[TEXT].start = virt_to_phys ( _text );
hidden_regions[TEXT].end = virt_to_phys ( _end );
DBG ( "Hiding [%x,%x)\n", hidden_regions[TEXT].start,
hidden_regions[TEXT].end );
DBG ( "Hiding [%lx,%lx)\n",
( unsigned long ) hidden_regions[TEXT].start,
( unsigned long ) hidden_regions[TEXT].end );
hook_bios_interrupt ( 0x15, ( unsigned int ) int15,
&int15_vector );