Index: uspace/app/init/init.c
===================================================================
--- uspace/app/init/init.c	(revision 594303bc2c2613b4ab83c29adb62ad2b1a616d92)
+++ uspace/app/init/init.c	(revision 402de0c55e1244d9577ac32ddd4be299249808be)
@@ -89,10 +89,6 @@
 	argv[1] = NULL;
 	
-	if (task_spawn(fname, argv)) {
-		/* Add reasonable delay to avoid intermixed klog output. */
-		usleep(10000);
-	} else {
+	if (!task_spawn(fname, argv))
 		printf(NAME ": Error spawning %s\n", fname);
-	}
 }
 
Index: uspace/app/tetris/input.c
===================================================================
--- uspace/app/tetris/input.c	(revision 594303bc2c2613b4ab83c29adb62ad2b1a616d92)
+++ uspace/app/tetris/input.c	(revision 402de0c55e1244d9577ac32ddd4be299249808be)
@@ -116,5 +116,5 @@
 again:
 		if (!getchar_inprog) {
-			cons_phone = console_phone_get(true);
+			cons_phone = console_open(true);
 			getchar_inprog = async_send_2(cons_phone,
 			    CONSOLE_GETKEY, 0, 0, &charcall);
