From a5d131d8a5c4d04ec159c3629bd0831b7d507868 Mon Sep 17 00:00:00 2001 From: rlar Date: Sun, 28 Apr 2013 13:49:55 +0200 Subject: [PATCH] sparse/*.c, drop unnecessary (int *) cast --- src/maths/sparse/spfactor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/maths/sparse/spfactor.c b/src/maths/sparse/spfactor.c index 25008ad04..ddff32fcd 100644 --- a/src/maths/sparse/spfactor.c +++ b/src/maths/sparse/spfactor.c @@ -603,8 +603,8 @@ spPartition(MatrixPtr eMatrix, int Mode) assert( Mode == spAUTO_PARTITION ); /* Otherwise, count all operations needed in when factoring matrix. */ - Nc = (int *)Matrix->MarkowitzRow; - No = (int *)Matrix->MarkowitzCol; + Nc = Matrix->MarkowitzRow; + No = Matrix->MarkowitzCol; Nm = (int *)Matrix->MarkowitzProd; /* Start mock-factorization. */