Cosmetics.
This commit is contained in:
parent
e7dc390f65
commit
d57f7d14f1
|
@ -21,7 +21,7 @@ DEFAULT_DEBUG_CHANNEL(console)
|
|||
static void GENERIC_MoveLine(char row1, char row2, char col1, char col2);
|
||||
static void GENERIC_ClearLine(char row, char col1, char col2, int bgcolor,
|
||||
int attribute);
|
||||
void GENERIC_Start()
|
||||
void GENERIC_Start(void)
|
||||
{
|
||||
/* Here, we only want to add a driver if there is not one already
|
||||
defined. */
|
||||
|
|
|
@ -174,7 +174,7 @@ void NCURSES_GetCharacterAtCursor(char *ch, int *fg_color, int
|
|||
*bg_color = WINE_BLACK;
|
||||
if (attribute)
|
||||
*attribute = 0;
|
||||
};
|
||||
}
|
||||
|
||||
void NCURSES_Refresh()
|
||||
{
|
||||
|
|
|
@ -44,7 +44,7 @@ static XTERM_CONSOLE xterm_console;
|
|||
CONSOLE_device chain;
|
||||
FILE *old_in, *old_out;
|
||||
|
||||
void XTERM_Start()
|
||||
void XTERM_Start(void)
|
||||
{
|
||||
/* Here, this is a supplementary driver so we should remember to call
|
||||
the chain. */
|
||||
|
|
Loading…
Reference in New Issue