diff options
author | Helen Ginn <helen@strubi.ox.ac.uk> | 2018-04-27 22:28:29 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-05-02 09:46:14 +0200 |
commit | be84751456dfd993472f64994cb26542b272dbb6 (patch) | |
tree | 6249c583a05beab83419c402c385587d960968af | |
parent | b0c9de361ded510d1fb3facbdb21925b7f3625ab (diff) |
Fix a for loop
-rw-r--r-- | libcrystfel/src/taketwo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/src/taketwo.c b/libcrystfel/src/taketwo.c index bbd3883d..293d9551 100644 --- a/libcrystfel/src/taketwo.c +++ b/libcrystfel/src/taketwo.c @@ -1262,7 +1262,7 @@ static int find_seeds(struct TakeTwoCell *cell, struct taketwo_private *tp) */ int i, j; - for ( i=0; i<obs_vec_count; i++ ) { + for ( i=1; i<obs_vec_count; i++ ) { for ( j=0; j<i; j++ ) { |