diff options
Diffstat (limited to 'drv_LCDTerm.c')
-rw-r--r-- | drv_LCDTerm.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drv_LCDTerm.c b/drv_LCDTerm.c index 9a5a91c..8255c3b 100644 --- a/drv_LCDTerm.c +++ b/drv_LCDTerm.c @@ -1,4 +1,4 @@ -/* $Id: drv_LCDTerm.c 728 2007-01-14 11:14:38Z michael $ +/* $Id: drv_LCDTerm.c 773 2007-02-25 12:39:09Z michael $ * $URL: https://ssl.bulix.org/svn/lcd4linux/branches/0.10.1/drv_LCDTerm.c $ * * driver for the LCDTerm serial-to-HD44780 adapter boards @@ -198,7 +198,7 @@ int drv_LT_init(const char *section, const int quiet) int asc255bug; int ret; - info("%s: %s", Name, "$Rev: 728 $"); + info("%s: %s", Name, "$Rev: 773 $"); /* display preferences */ XRES = 5; /* pixel width of one char */ @@ -284,8 +284,8 @@ int drv_LT_quit(const int quiet) DRIVER drv_LCDTerm = { - name:Name, - list:drv_LT_list, - init:drv_LT_init, - quit:drv_LT_quit, + .name = Name, + .list = drv_LT_list, + .init = drv_LT_init, + .quit = drv_LT_quit, }; |