Commit d57f7d14 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Cosmetics.

parent e7dc390f
...@@ -21,7 +21,7 @@ DEFAULT_DEBUG_CHANNEL(console) ...@@ -21,7 +21,7 @@ DEFAULT_DEBUG_CHANNEL(console)
static void GENERIC_MoveLine(char row1, char row2, char col1, char col2); static void GENERIC_MoveLine(char row1, char row2, char col1, char col2);
static void GENERIC_ClearLine(char row, char col1, char col2, int bgcolor, static void GENERIC_ClearLine(char row, char col1, char col2, int bgcolor,
int attribute); int attribute);
void GENERIC_Start() void GENERIC_Start(void)
{ {
/* Here, we only want to add a driver if there is not one already /* Here, we only want to add a driver if there is not one already
defined. */ defined. */
......
...@@ -174,7 +174,7 @@ void NCURSES_GetCharacterAtCursor(char *ch, int *fg_color, int ...@@ -174,7 +174,7 @@ void NCURSES_GetCharacterAtCursor(char *ch, int *fg_color, int
*bg_color = WINE_BLACK; *bg_color = WINE_BLACK;
if (attribute) if (attribute)
*attribute = 0; *attribute = 0;
}; }
void NCURSES_Refresh() void NCURSES_Refresh()
{ {
......
...@@ -44,7 +44,7 @@ static XTERM_CONSOLE xterm_console; ...@@ -44,7 +44,7 @@ static XTERM_CONSOLE xterm_console;
CONSOLE_device chain; CONSOLE_device chain;
FILE *old_in, *old_out; FILE *old_in, *old_out;
void XTERM_Start() void XTERM_Start(void)
{ {
/* Here, this is a supplementary driver so we should remember to call /* Here, this is a supplementary driver so we should remember to call
the chain. */ the chain. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment