Index: fb/fb.c
===================================================================
--- fb/fb.c	(revision 854387b48c1405befa1109b49cef5c35e39767b3)
+++ fb/fb.c	(revision 44c6d88d97fb845af719b8a78de9f944baccc78e)
@@ -127,5 +127,5 @@
 	int vfb = vfb_no++;
 
-	if (vfb > 9) {
+	if (vfb > VFB_CONNECTIONS) {
 		ipc_answer_fast(iid, ELIMIT, 0,0);
 		return;
@@ -536,5 +536,5 @@
 	
 	
-	if( (graphics_items[item_new]=malloc(sizeof(framebuffer_descriptor_t))) ==NULL) 
+	if( (graphics_items[item_new]=malloc(sizeof(framebuffer_descriptor_t))) == NULL) 
 	{
 		return EFB;
Index: fb/fb.h
===================================================================
--- fb/fb.h	(revision 854387b48c1405befa1109b49cef5c35e39767b3)
+++ fb/fb.h	(revision 44c6d88d97fb845af719b8a78de9f944baccc78e)
@@ -33,4 +33,6 @@
 #include <arch/types.h>
 
+#define VFB_CONNECTIONS	9
+
 //void fb_init(int item,__address addr, unsigned int x, unsigned int y, unsigned int bpp, unsigned int scan);
 
