From: Ian Jackson Date: Thu, 29 May 2008 16:38:49 +0000 (+0100) Subject: add size string parameter to text_console_init - currently ignored by our fork of... X-Git-Tag: xen-3.3.0-rc1~150 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=5e70e5202a967f17eecfbafd997b9e09303069dd;p=qemu-xen-4.6-testing.git add size string parameter to text_console_init - currently ignored by our fork of the code :-/ --- diff --git a/console.c b/console.c index f2bf4e02c..ba5d0deb8 100644 --- a/console.c +++ b/console.c @@ -1166,7 +1166,7 @@ void set_color_table(DisplayState *ds) } } -CharDriverState *text_console_init(DisplayState *ds) +CharDriverState *text_console_init(DisplayState *ds, const char *p) { CharDriverState *chr; TextConsole *s; diff --git a/console.h b/console.h index d3fd91b93..63e9953e6 100644 --- a/console.h +++ b/console.h @@ -113,7 +113,7 @@ void vga_hw_invalidate(void); void vga_hw_screen_dump(const char *filename); int is_graphic_console(void); -CharDriverState *text_console_init(DisplayState *ds); +CharDriverState *text_console_init(DisplayState *ds, const char *p); void console_select(unsigned int index); void set_color_table(DisplayState *ds);