aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2019-03-09 11:35:48 +0100
committerThomas White <taw@physics.org>2019-03-11 16:49:37 +0100
commite94501d025e8d6b4f4e446004e80a1badfbba30f (patch)
tree7420ef194a9286846265905ca9dad618911cfc6e /libcrystfel
parent2b7e52df98bdd1b651e25995a9450c44f0b975ee (diff)
Fix typo
Diffstat (limited to 'libcrystfel')
-rw-r--r--libcrystfel/src/cell-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/src/cell-utils.c b/libcrystfel/src/cell-utils.c
index 819f4926..cc17f108 100644
--- a/libcrystfel/src/cell-utils.c
+++ b/libcrystfel/src/cell-utils.c
@@ -381,7 +381,7 @@ static RationalMatrix *create_rtnl_mtx(signed int a1, signed int a2,
rtnl_mtx_set(m, 1, 2, rtnl(f1, f2));
rtnl_mtx_set(m, 2, 0, rtnl(g1, g2));
rtnl_mtx_set(m, 2, 1, rtnl(h1, h2));
- rtnl_mtx_set(m, 2, 2, rtnl(i1, h2));
+ rtnl_mtx_set(m, 2, 2, rtnl(i1, i2));
return m;
}