aboutsummaryrefslogtreecommitdiffstats
path: root/drv_SimpleLCD.c
diff options
context:
space:
mode:
Diffstat (limited to 'drv_SimpleLCD.c')
-rw-r--r--drv_SimpleLCD.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drv_SimpleLCD.c b/drv_SimpleLCD.c
index 604a963..de68b92 100644
--- a/drv_SimpleLCD.c
+++ b/drv_SimpleLCD.c
@@ -1,4 +1,4 @@
-/* $Id: drv_SimpleLCD.c 728 2007-01-14 11:14:38Z michael $
+/* $Id: drv_SimpleLCD.c 773 2007-02-25 12:39:09Z michael $
* $URL: https://ssl.bulix.org/svn/lcd4linux/branches/0.10.1/drv_SimpleLCD.c $
*
* driver for a simple serial terminal.
@@ -284,7 +284,7 @@ int drv_SL_init(const char *section, const int quiet)
WIDGET_CLASS wc;
int ret;
- info("%s: %s", Name, "$Rev: 728 $");
+ info("%s: %s", Name, "$Rev: 773 $");
/* display preferences */
XRES = 5; /* pixel width of one char */
@@ -343,8 +343,8 @@ int drv_SL_quit(const int quiet)
DRIVER drv_SimpleLCD = {
- name:Name,
- list:drv_SL_list,
- init:drv_SL_init,
- quit:drv_SL_quit,
+ .name = Name,
+ .list = drv_SL_list,
+ .init = drv_SL_init,
+ .quit = drv_SL_quit,
};