From 6465b5a730a285a6e57b87de3004b5cfa1668e01 Mon Sep 17 00:00:00 2001 From: reinelt <> Date: Tue, 13 Mar 2001 08:34:15 +0000 Subject: [lcd4linux @ 2001-03-13 08:34:15 by reinelt] corrected a off-by-one bug with sensors --- exec.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'exec.c') diff --git a/exec.c b/exec.c index 71c18a1..c37fa56 100644 --- a/exec.c +++ b/exec.c @@ -1,4 +1,4 @@ -/* $Id: exec.c,v 1.4 2001/03/09 14:24:49 ltoetsch Exp $ +/* $Id: exec.c,v 1.5 2001/03/13 08:34:15 reinelt Exp $ * * exec ('x*') functions * @@ -20,6 +20,10 @@ * * * $Log: exec.c,v $ + * Revision 1.5 2001/03/13 08:34:15 reinelt + * + * corrected a off-by-one bug with sensors + * * Revision 1.4 2001/03/09 14:24:49 ltoetsch * exec: Scale_x ->Min/Max_x * @@ -67,7 +71,7 @@ int Exec(int index, char buff[EXEC_TXT_LEN], double *val) size_t len; int i; - if (index < 1 || index > EXECS) + if (index < 0 || index > EXECS) return -1; if (errs[index]) return -1; -- cgit v1.2.3