fix warning in vga console code (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3447 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
fec2c4f47f
commit
749c05e0fd
|
@ -36,7 +36,7 @@ static void vga_init(void)
|
|||
// these are globals
|
||||
vga_line = 0;
|
||||
vga_col = 0;
|
||||
vidmem = (unsigned char *) VIDBUFFER;
|
||||
vidmem = (char *) VIDBUFFER;
|
||||
|
||||
// mainboard or chip specific init routines
|
||||
// also loads font
|
||||
|
|
Loading…
Reference in New Issue