Index: uspace/lib/console/src/console.c
===================================================================
--- uspace/lib/console/src/console.c	(revision 69c376b5616c597944899de092fb3ed259bf735d)
+++ uspace/lib/console/src/console.c	(revision 731bdd4d0c998da2f4d88b0902faaa9f5a1c805f)
@@ -193,5 +193,5 @@
 		event->ev.key.mods = ipc_get_arg4(call);
 		event->ev.key.c = ipc_get_arg5(call);
-		break;
+		return EOK;
 	case CEV_POS:
 		event->ev.pos.pos_id = ipc_get_arg2(call) >> 16;
@@ -200,10 +200,10 @@
 		event->ev.pos.hpos = ipc_get_arg4(call);
 		event->ev.pos.vpos = ipc_get_arg5(call);
-		break;
-	default:
-		return EIO;
-	}
-
-	return EOK;
+		return EOK;
+	case CEV_RESIZE:
+		return EOK;
+	}
+
+	return EIO;
 }
 
