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.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c
index 8e82b1a1..fbbf4ff0 100644
--- a/src/process_hkl.c
+++ b/src/process_hkl.c
@@ -427,12 +427,15 @@ static int merge_all(Stream *st, RefList *model, RefList *reference,
n_crystals_seen++;
if ( (n_crystals_seen > start_after)
- && (crystal_get_resolution_limit(cr) >= min_res) ) {
+ && (crystal_get_resolution_limit(cr) >= min_res) )
+ {
n_crystals++;
- r = merge_crystal(model, &image, cr, reference, sym,
- hist_vals, hist_h, hist_k, hist_l,
- hist_i, config_nopolar, min_snr,
- max_adu, push_res, min_cc, do_scale, stat);
+ r = merge_crystal(model, &image, cr, reference,
+ sym, hist_vals,
+ hist_h, hist_k, hist_l,
+ hist_i, config_nopolar,
+ min_snr, max_adu, push_res,
+ min_cc, do_scale, stat);
if ( r == 0 ) n_crystals_used++;
}