From da124bf5c7dfcff3bd81bf830521b061d47ceb12 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 5 Aug 2000 11:27:56 +0000 Subject: [PATCH] (matinv): Fix type error. --- matrix.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/matrix.c b/matrix.c index c164275..321d9b8 100644 --- a/matrix.c +++ b/matrix.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: matrix.c,v 1.2 2000/07/02 15:22:07 mdw Exp $ + * $Id: matrix.c,v 1.3 2000/08/05 11:27:56 mdw Exp $ * * Matrix arithmetic mod %$2^{24}$% * @@ -49,6 +49,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: matrix.c,v $ + * Revision 1.3 2000/08/05 11:27:56 mdw + * (matinv): Fix type error. + * * Revision 1.2 2000/07/02 15:22:07 mdw * Fix licence text. Change to matinv to mark inputs as constants. * @@ -115,7 +118,7 @@ int matinv(uint24 *d, const uint24 *a, unsigned x, unsigned y) { unsigned i, j, k; uint24 *aa; - uint32 *p, *q, *r, *s; + uint24 *p, *q, *r, *s; assert(x == y); -- 2.11.0