diff options
author | reinelt <> | 2003-10-12 04:46:19 +0000 |
---|---|---|
committer | reinelt <> | 2003-10-12 04:46:19 +0000 |
commit | 71121d793368cc28266f89ba17908b5f96dfa33b (patch) | |
tree | 03acecc10efdb73d19bb15257a5f47b21169c7c8 /processor.c | |
parent | 23aa2f85a50e8f4d5c2010965709700bc23d2340 (diff) | |
download | lcd4linux-71121d793368cc28266f89ba17908b5f96dfa33b.tar.gz |
[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)
Diffstat (limited to 'processor.c')
-rw-r--r-- | processor.c | 11 |
1 files changed, 9 insertions, 2 deletions
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: |