eliminated compiler warnings

This commit is contained in:
boercher
2005-10-25 22:34:07 +00:00
parent 305c5856cd
commit bba4631370
8 changed files with 12 additions and 11 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ text_init (Driver *drvthis)
}
// Allocate the framebuffer
framebuf = (unsigned char *) malloc (width * height);
framebuf = malloc (width * height);
memset (framebuf, ' ', width * height);
return 0;