diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-16 21:13:49 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-16 21:13:49 +0000 |
commit | f0f2f976cf962a88f45d5c05e469e8acae8c4777 (patch) | |
tree | 9decdb9d4bd8b70be75e3ef3d79cfb8f3c910ae6 /console.c | |
parent | fdb868e410c598f8a3a11d6c23f08380aa359623 (diff) |
console: remove trailing spaces
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6355 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'console.c')
-rw-r--r-- | console.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1242,7 +1242,7 @@ DisplayState *graphic_console_init(vga_hw_update_ptr update, { TextConsole *s; DisplayState *ds; - + ds = (DisplayState *) qemu_mallocz(sizeof(DisplayState)); if (ds == NULL) return NULL; @@ -1260,7 +1260,7 @@ DisplayState *graphic_console_init(vga_hw_update_ptr update, s->hw_text_update = text_update; s->hw = opaque; - register_displaystate(ds); + register_displaystate(ds); return ds; } @@ -1279,7 +1279,7 @@ void console_color_init(DisplayState *ds) int i, j; for (j = 0; j < 2; j++) { for (i = 0; i < 8; i++) { - color_table[j][i] = col_expand(ds, + color_table[j][i] = col_expand(ds, vga_get_color(ds, color_table_rgb[j][i])); } } |