Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4322 → Rev 4323

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