diff options
author | reinelt <> | 2003-08-24 05:17:58 +0000 |
---|---|---|
committer | reinelt <> | 2003-08-24 05:17:58 +0000 |
commit | e349ac4e73b4916c766721f22b1fbb667d25d0be (patch) | |
tree | 072381f83d0966b48fb518505e693e326d9b72ce /Crystalfontz.c | |
parent | d36f45332730bf7055a51d940a6db816b29489ba (diff) | |
download | lcd4linux-e349ac4e73b4916c766721f22b1fbb667d25d0be.tar.gz |
[lcd4linux @ 2003-08-24 05:17:58 by reinelt]
liblcd4linux patch from Patrick Schemitz
Diffstat (limited to 'Crystalfontz.c')
-rw-r--r-- | Crystalfontz.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Crystalfontz.c b/Crystalfontz.c index 628abe0..8e11d35 100644 --- a/Crystalfontz.c +++ b/Crystalfontz.c @@ -1,4 +1,4 @@ -/* $Id: Crystalfontz.c,v 1.12 2003/08/19 04:28:41 reinelt Exp $ +/* $Id: Crystalfontz.c,v 1.13 2003/08/24 05:17:58 reinelt Exp $ * * driver for display modules from Crystalfontz * @@ -19,6 +19,9 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * $Log: Crystalfontz.c,v $ + * Revision 1.13 2003/08/24 05:17:58 reinelt + * liblcd4linux patch from Patrick Schemitz + * * Revision 1.12 2003/08/19 04:28:41 reinelt * more Icon stuff, minor glitches fixed * @@ -208,7 +211,7 @@ static int CF_init (LCD *Self) port=cfg_get ("Port",NULL); if (port==NULL || *port=='\0') { - error ("Crystalfontz: no 'Port' entry in %s", cfg_file()); + error ("Crystalfontz: no 'Port' entry in %s", cfg_source()); return -1; } Port=strdup(port); @@ -229,7 +232,7 @@ static int CF_init (LCD *Self) Speed=B19200; break; default: - error ("Crystalfontz: unsupported speed '%s' in %s", speed, cfg_file()); + error ("Crystalfontz: unsupported speed '%s' in %s", speed, cfg_source()); return -1; } |