aboutsummaryrefslogtreecommitdiffstats
path: root/processor.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-03-15 09:47:13 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-03-15 09:47:13 +0000
commit1bbd55d6180fc18c16b401eafae2fa7ab84d01fa (patch)
tree4b07c5d5f82f2a65663f4d1d6233f7dadc177279 /processor.c
parent4b219e09f035d52e3f02b4a4fd042185a06fb670 (diff)
downloadlcd4linux-1bbd55d6180fc18c16b401eafae2fa7ab84d01fa.tar.gz
[lcd4linux @ 2001-03-15 09:47:13 by reinelt]
some fixes to ppdef off-by-one bug in processor.c fixed git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@122 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to '')
-rw-r--r--processor.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/processor.c b/processor.c
index 45eaff7..fdda661 100644
--- a/processor.c
+++ b/processor.c
@@ -1,4 +1,4 @@
-/* $Id: processor.c,v 1.20 2001/03/14 13:19:29 ltoetsch Exp $
+/* $Id: processor.c,v 1.21 2001/03/15 09:47:13 reinelt Exp $
*
* main data processing
*
@@ -20,6 +20,11 @@
*
*
* $Log: processor.c,v $
+ * Revision 1.21 2001/03/15 09:47:13 reinelt
+ *
+ * some fixes to ppdef
+ * off-by-one bug in processor.c fixed
+ *
* Revision 1.20 2001/03/14 13:19:29 ltoetsch
* Added pop3/imap4 mail support
*
@@ -141,8 +146,8 @@
#define ROWS 16
#define GPOS 16
-char *row[ROWS];
-char gpo[GPOS];
+char *row[ROWS+1];
+char gpo[GPOS+1];
int rows, cols, xres, yres, supported_bars, gpos;
int token_usage[256]={0,};