From e6958e5ac0c3823bf029130471bf3009093ca446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Thu, 28 Oct 2010 14:03:53 +0200 Subject: [PATCH] Fix another fallout from renaming invAc -> luAc. --- trans_tpfa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trans_tpfa.c b/trans_tpfa.c index 72a10f56..b85519e9 100644 --- a/trans_tpfa.c +++ b/trans_tpfa.c @@ -224,7 +224,7 @@ tpfa_compr_htran_mult(grid_t *G , v = malloc(np * max_ngconn * sizeof *v); ipiv = malloc(np * sizeof *ipiv); - if ((invAc != NULL) && (v != NULL) && (ipiv != NULL)) { + if ((luAc != NULL) && (v != NULL) && (ipiv != NULL)) { compr_htran_mult_core(G, np, Ac, xf, ht_mult, luAc, v, ipiv); }