From 71121d793368cc28266f89ba17908b5f96dfa33b Mon Sep 17 00:00:00 2001 From: reinelt <> Date: Sun, 12 Oct 2003 04:46:19 +0000 Subject: [lcd4linux @ 2003-10-12 04:46:19 by reinelt] first try to integrate the Evaluator into a display driver (MatrixOrbital here) small warning in processor.c fixed (thanks to Zachary Giles) workaround for udelay() on alpha (no msr.h avaliable) (thanks to Zachary Giles) --- processor.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'processor.c') diff --git a/processor.c b/processor.c index b426e6c..788d900 100644 --- a/processor.c +++ b/processor.c @@ -1,4 +1,4 @@ -/* $Id: processor.c,v 1.47 2003/10/05 17:58:50 reinelt Exp $ +/* $Id: processor.c,v 1.48 2003/10/12 04:46:19 reinelt Exp $ * * main data processing * @@ -22,6 +22,13 @@ * * * $Log: processor.c,v $ + * Revision 1.48 2003/10/12 04:46:19 reinelt + * + * + * first try to integrate the Evaluator into a display driver (MatrixOrbital here) + * small warning in processor.c fixed (thanks to Zachary Giles) + * workaround for udelay() on alpha (no msr.h avaliable) (thanks to Zachary Giles) + * * Revision 1.47 2003/10/05 17:58:50 reinelt * libtool junk; copyright messages cleaned up * @@ -584,7 +591,7 @@ static void print_token (int token, char **p, char *start) case T_EXEC: i = (token>>8)-'0'; - *p+=sprintf (*p, "%.*s",cols-(*p-start), exec[i].s); + *p+=sprintf (*p, "%.*s",cols-(int)(*p-start), exec[i].s); break; default: -- cgit v1.2.3