aboutsummaryrefslogtreecommitdiffstats
path: root/drv_picoLCD.c
diff options
context:
space:
mode:
Diffstat (limited to 'drv_picoLCD.c')
-rw-r--r--drv_picoLCD.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drv_picoLCD.c b/drv_picoLCD.c
index 36ba7c0..a0c03e9 100644
--- a/drv_picoLCD.c
+++ b/drv_picoLCD.c
@@ -1,4 +1,4 @@
-/* $Id: drv_picoLCD.c 759 2007-02-04 05:55:58Z michael $
+/* $Id: drv_picoLCD.c 773 2007-02-25 12:39:09Z michael $
* $URL: https://ssl.bulix.org/svn/lcd4linux/branches/0.10.1/drv_picoLCD.c $
*
* driver for picoLCD displays from mini-box.com
@@ -373,7 +373,7 @@ int drv_pL_init(const char *section, const int quiet)
WIDGET_CLASS wc;
int ret;
- info("%s: %s", Name, "$Rev: 759 $");
+ info("%s: %s", Name, "$Rev: 773 $");
/* display preferences */
XRES = 5; /* pixel width of one char */
@@ -464,8 +464,8 @@ int drv_pL_quit(const int quiet)
DRIVER drv_picoLCD = {
- name:Name,
- list:drv_pL_list,
- init:drv_pL_init,
- quit:drv_pL_quit,
+ .name = Name,
+ .list = drv_pL_list,
+ .init = drv_pL_init,
+ .quit = drv_pL_quit,
};