summaryrefslogtreecommitdiff
path: root/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'matrix.c')
-rw-r--r--matrix.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/matrix.c b/matrix.c
index 5038b91..646be42 100644
--- a/matrix.c
+++ b/matrix.c
@@ -339,7 +339,6 @@ Matrix **matrix_LR(const Matrix *A, const Vector *b)
Matrix **result = malloc(sizeof(Matrix) * 2);
result[0] = L;
result[1] = A_curr;
- result[2] = NULL;
return result;
}