aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-01-15 15:27:46 +0100
committerThomas White <taw@physics.org>2021-01-15 15:27:46 +0100
commit4d82731cc32b4453f74b717585c6b2b3fac4aff8 (patch)
tree79fae02d2061e3ad64d6aaf9573bccdf5ee186f3 /libcrystfel
parente5575e55c7a6231f9555b188d19eb6f57af92518 (diff)
Formatting
Diffstat (limited to 'libcrystfel')
-rw-r--r--libcrystfel/src/index.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/libcrystfel/src/index.c b/libcrystfel/src/index.c
index 130b4262..44909347 100644
--- a/libcrystfel/src/index.c
+++ b/libcrystfel/src/index.c
@@ -573,10 +573,14 @@ static int check_cell(IndexingFlags flags, Crystal *cr, UnitCell *target,
/* Check at all? */
if ( !(flags & INDEXING_CHECK_CELL) ) return 0;
- if ( !right_handed(target) ) STATUS("WARNING: reference cell is left handed\n");
- if ( !right_handed(crystal_get_cell(cr)) ) STATUS("WARNING: unmatched cell is left handed\n");
+ if ( !right_handed(target) ) {
+ STATUS("WARNING: reference cell is left handed\n");
+ }
+ if ( !right_handed(crystal_get_cell(cr)) ) {
+ STATUS("WARNING: unmatched cell is left handed\n");
+ }
out = compare_reindexed_cell_parameters(crystal_get_cell(cr), target,
- tolerance, &rm);
+ tolerance, &rm);
if ( out != NULL ) {