diff options
author | Thomas White <taw@physics.org> | 2014-05-23 17:01:31 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-05-23 17:01:31 +0200 |
commit | efd2a247b2cac3240c8157f69948faaecd37f9f6 (patch) | |
tree | c5d1d1b20b0366de5163af66c5618e6c3bc556b2 /src | |
parent | 9d661258198127dc7150e9cf04e8b2f1cb3eec55 (diff) |
Remove old error
Diffstat (limited to 'src')
-rw-r--r-- | src/post-refinement.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/post-refinement.c b/src/post-refinement.c index 1b950d32..9411f324 100644 --- a/src/post-refinement.c +++ b/src/post-refinement.c @@ -507,11 +507,7 @@ static double pr_iterate(Crystal *cr, const RefList *full, /* Find the full version */ get_indices(refl, &ha, &ka, &la); match = find_refl(full, ha, ka, la); - if ( match == NULL ) { - ERROR("%3i %3i %3i isn't in the reference list, so why " - " is it marked as refinable?\n", ha, ka, la); - continue; - } + if ( match == NULL ) continue; I_full = get_intensity(match); /* Actual measurement of this reflection from this pattern? */ |