aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/dirax.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2013-02-09 23:04:44 -0800
committerThomas White <taw@physics.org>2013-02-09 23:04:56 -0800
commit55fdffb8a4f92b9b2d1c3c067b43119ce394b5db (patch)
tree6c85a4e1c9c84f05d6cd522c0e8cee3ee1ed78b8 /libcrystfel/src/dirax.c
parent00d4c6ce684b1352d585a287f8ef31c1c30a7c35 (diff)
Add cleanup functions for DirAx and MOSFLM
Diffstat (limited to 'libcrystfel/src/dirax.c')
-rw-r--r--libcrystfel/src/dirax.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libcrystfel/src/dirax.c b/libcrystfel/src/dirax.c
index b7fc68ea..fc185fd4 100644
--- a/libcrystfel/src/dirax.c
+++ b/libcrystfel/src/dirax.c
@@ -650,3 +650,11 @@ IndexingPrivate *dirax_prepare(IndexingMethod indm, UnitCell *cell,
return (IndexingPrivate *)dp;
}
+
+
+void dirax_cleanup(IndexingPrivate *pp)
+{
+ struct dirax_private *p;
+ p = (struct dirax_private *)pp;
+ free(p);
+}