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 -2
View File
@@ -399,13 +399,12 @@ curses_drv_backlight (Driver *drvthis, int promille)
MODULE_EXPORT void
curses_drv_string (Driver *drvthis, int x, int y, char *string)
{
//int i;
unsigned char *p;
ValidX(x);
ValidY(y);
p = string;
p = (unsigned char *) string;
// Convert NULLs and 0xFF in string to
// valid printables...