diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-08-01 11:38:23 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-08-01 11:38:23 +0000 |
commit | 749c05e0fd0aff1ba9d85138ec472f8b14457375 (patch) | |
tree | dc2e9e6969b8cbce3f93e772e2eacff58d0d8dd4 /src/console | |
parent | fec2c4f47fde15d4731d448faa9dfa3a3230a307 (diff) |
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
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/vga_console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/vga_console.c b/src/console/vga_console.c index a93e2a34f7..120828a849 100644 --- a/src/console/vga_console.c +++ b/src/console/vga_console.c @@ -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 |