mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-23 19:51:46 +00:00
Fix printf format warning error
This commit is contained in:
parent
3bd3c13c7b
commit
f939ff7cb5
@ -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 );
|
||||
|
Loading…
Reference in New Issue
Block a user