Subversion Repositories HelenOS-historic

Compare Revisions

Regard whitespace Rev 1489 → Rev 1490

/uspace/trunk/console/console.c
115,10 → 115,11
/* switch to another virtual console */
conn = &connections[active_console];
if ((c >= KBD_KEY_F1) && (c < KBD_KEY_F1 + CONSOLE_COUNT)) {
// if ((c >= KBD_KEY_F1) && (c < KBD_KEY_F1 + CONSOLE_COUNT)) {
if ((c >= '1') && (c < '1' + CONSOLE_COUNT)) {
/*FIXME: draw another console content from buffer */
 
active_console = c - KBD_KEY_F1;
active_console = c - '1';
conn = &connections[active_console];
 
ipc_call_async(fb_info.phone, FB_CURSOR_VISIBILITY, 0, NULL, NULL);
232,6 → 233,8
ipcarg_t retval, arg1 = 0xdead, arg2 = 0xbeef;
int i;
async_set_client_connection(client_connection);
/* Connect to keyboard driver */
 
while ((kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0)) < 0) {