aboutsummaryrefslogtreecommitdiff
path: root/src/process_hkl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process_hkl.c')
-rw-r--r--src/process_hkl.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c
index 12427a1a..abb4422f 100644
--- a/src/process_hkl.c
+++ b/src/process_hkl.c
@@ -337,7 +337,9 @@ int main(int argc, char *argv[])
}
if ( output != NULL ) {
- write_reflections(output, counts, ref, 0, mol->cell);
+ UnitCell *cell = NULL;
+ if ( mol != NULL ) cell = mol->cell;
+ write_reflections(output, counts, ref, 0, cell);
}
STATUS("There were %u patterns.\n", n_patterns);