aboutsummaryrefslogtreecommitdiffstats
path: root/drv_picoLCD.c
diff options
context:
space:
mode:
authormzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2011-02-12 22:46:19 +0000
committermzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2011-02-12 22:46:19 +0000
commitf17287509f698f21f38ae047a306ddca3fc13140 (patch)
treee9e0c09fb2ee1d6dd0eaa82365bb101308660f03 /drv_picoLCD.c
parent5e69b1e3961ee896d44107c05650c915d9b24298 (diff)
downloadlcd4linux-f17287509f698f21f38ae047a306ddca3fc13140.tar.gz
timer.c: fixed detection of positive clock skew (and some typos)
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1143 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv_picoLCD.c')
-rw-r--r--drv_picoLCD.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drv_picoLCD.c b/drv_picoLCD.c
index b971775..84dccb3 100644
--- a/drv_picoLCD.c
+++ b/drv_picoLCD.c
@@ -306,7 +306,7 @@ static int drv_pL_start(const char *section, const int quiet)
/* Init the command buffer */
Buffer = (char *) malloc(1024);
if (Buffer == NULL) {
- error("%s: coommand buffer could not be allocated: malloc() failed", Name);
+ error("%s: command buffer could not be allocated: malloc() failed", Name);
return -1;
}
BufPtr = Buffer;