mirror of
https://github.com/ipxe/ipxe
synced 2025-12-12 23:15:10 +03:00
Fix printf format warning error
This commit is contained in:
@@ -73,8 +73,9 @@ void hide_etherboot ( void ) {
|
|||||||
hidden_regions[TEXT].start = virt_to_phys ( _text );
|
hidden_regions[TEXT].start = virt_to_phys ( _text );
|
||||||
hidden_regions[TEXT].end = virt_to_phys ( _end );
|
hidden_regions[TEXT].end = virt_to_phys ( _end );
|
||||||
|
|
||||||
DBG ( "Hiding [%x,%x)\n", hidden_regions[TEXT].start,
|
DBG ( "Hiding [%lx,%lx)\n",
|
||||||
hidden_regions[TEXT].end );
|
( unsigned long ) hidden_regions[TEXT].start,
|
||||||
|
( unsigned long ) hidden_regions[TEXT].end );
|
||||||
|
|
||||||
hook_bios_interrupt ( 0x15, ( unsigned int ) int15,
|
hook_bios_interrupt ( 0x15, ( unsigned int ) int15,
|
||||||
&int15_vector );
|
&int15_vector );
|
||||||
|
|||||||
Reference in New Issue
Block a user