Commit f0f2f976cf962a88f45d5c05e469e8acae8c4777

Authored by aurel32
1 parent fdb868e4

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
Showing 1 changed file with 3 additions and 3 deletions
console.c
@@ -1242,7 +1242,7 @@ DisplayState *graphic_console_init(vga_hw_update_ptr update, @@ -1242,7 +1242,7 @@ DisplayState *graphic_console_init(vga_hw_update_ptr update,
1242 { 1242 {
1243 TextConsole *s; 1243 TextConsole *s;
1244 DisplayState *ds; 1244 DisplayState *ds;
1245 - 1245 +
1246 ds = (DisplayState *) qemu_mallocz(sizeof(DisplayState)); 1246 ds = (DisplayState *) qemu_mallocz(sizeof(DisplayState));
1247 if (ds == NULL) 1247 if (ds == NULL)
1248 return NULL; 1248 return NULL;
@@ -1260,7 +1260,7 @@ DisplayState *graphic_console_init(vga_hw_update_ptr update, @@ -1260,7 +1260,7 @@ DisplayState *graphic_console_init(vga_hw_update_ptr update,
1260 s->hw_text_update = text_update; 1260 s->hw_text_update = text_update;
1261 s->hw = opaque; 1261 s->hw = opaque;
1262 1262
1263 - register_displaystate(ds); 1263 + register_displaystate(ds);
1264 return ds; 1264 return ds;
1265 } 1265 }
1266 1266
@@ -1279,7 +1279,7 @@ void console_color_init(DisplayState *ds) @@ -1279,7 +1279,7 @@ void console_color_init(DisplayState *ds)
1279 int i, j; 1279 int i, j;
1280 for (j = 0; j < 2; j++) { 1280 for (j = 0; j < 2; j++) {
1281 for (i = 0; i < 8; i++) { 1281 for (i = 0; i < 8; i++) {
1282 - color_table[j][i] = col_expand(ds, 1282 + color_table[j][i] = col_expand(ds,
1283 vga_get_color(ds, color_table_rgb[j][i])); 1283 vga_get_color(ds, color_table_rgb[j][i]));
1284 } 1284 }
1285 } 1285 }