beatnik/startup/bspstart.c: Fix printf() format warnings

This commit is contained in:
Joel Sherrill
2017-04-23 20:04:19 -05:00
parent 93206c127c
commit c44a740222

View File

@@ -373,7 +373,7 @@ void bsp_start( void )
BSP_timers_initialize();
#ifdef SHOW_MORE_INIT_SETTINGS
printk("MSR %x \n", _read_MSR());
printk("MSR 0x%lx \n", _read_MSR());
printk("Exit from bspstart\n");
#endif
}