a little bit of cleanup

This commit is contained in:
marschap
2008-12-19 19:45:24 +00:00
parent ef9dc9e980
commit 4bc8aec27a
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
/** \file server/drivers/curses_drv.c /** \file server/drivers/curses_drv.c
* LCDproc \c curses driver for text-mode terminals using curses. * LCDd \c curses driver for text-mode terminals using curses.
* It displays an emulated LCD display of configurable size at * It displays an emulated LCD display of configurable size at
* a configurable position of the terminal screen using (n)curses. * a configurable position of the terminal screen using (n)curses.
*/ */
@@ -672,9 +672,9 @@ MODULE_EXPORT const char *
text_get_info (Driver *drvthis) text_get_info (Driver *drvthis)
{ {
//PrivateData *p = drvthis->private_data; //PrivateData *p = drvthis->private_data;
static char *test_info_string = "curses driver"; static char *info_string = "curses driver";
return test_info_string; return info_string;
} }
+2 -2
View File
@@ -280,7 +280,7 @@ MODULE_EXPORT const char *
text_get_info (Driver *drvthis) text_get_info (Driver *drvthis)
{ {
//PrivateData *p = drvthis->private_data; //PrivateData *p = drvthis->private_data;
static char *test_info_string = "Text mode driver"; static char *info_string = "Text mode driver";
return test_info_string; return info_string;
} }