summaryrefslogtreecommitdiff
path: root/common/mat33.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/mat33.c')
-rw-r--r--common/mat33.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/mat33.c b/common/mat33.c
index 17938c0c4f..d5d062b7ce 100644
--- a/common/mat33.c
+++ b/common/mat33.c
@@ -58,7 +58,7 @@ void mat33_swap_rows(mat33_t A, const size_t i, const size_t j)
void mat33_get_eigenbasis(mat33_t S, floatv3_t e_vals, mat33_t e_vecs)
{
const size_t N = 3;
- size3_t ind;
+ sizev3_t ind;
size_t i, j, k, l, m;
for (k = 0; k < N; ++k) {