Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4402 → Rev 4319

/trunk/kernel/generic/src/console/console.c
124,13 → 124,11
 
void grab_console(void)
{
bool prev = silent;
silent = false;
arch_grab_console();
/* Force the console to print the prompt */
if ((stdin) && (prev))
if (stdin)
indev_push_character(stdin, '\n');
}