Index: kernel/genarch/src/fb/fb.c
===================================================================
--- kernel/genarch/src/fb/fb.c	(revision 24a44ec161e8b3293d6f2f9ef1360e003d87831e)
+++ kernel/genarch/src/fb/fb.c	(revision 4850560f9f81a50d2508038b206e5e33959d8ee9)
@@ -457,5 +457,5 @@
 		break;
 	default:
-		panic("Unsupported visual.\n");
+		panic("Unsupported visual.");
 	}
 	
@@ -489,13 +489,13 @@
 	backbuf = (uint8_t *) malloc(bbsize, 0);
 	if (!backbuf)
-		panic("Unable to allocate backbuffer.\n");
+		panic("Unable to allocate backbuffer.");
 	
 	glyphs = (uint8_t *) malloc(glyphsize, 0);
 	if (!glyphs)
-		panic("Unable to allocate glyphs.\n");
+		panic("Unable to allocate glyphs.");
 	
 	bgscan = malloc(bgscanbytes, 0);
 	if (!bgscan)
-		panic("Unable to allocate background pixel.\n");
+		panic("Unable to allocate background pixel.");
 	
 	memsetb(backbuf, bbsize, 0);
