diff options
author | Thomas White <taw@physics.org> | 2011-01-12 18:04:01 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:10 +0100 |
commit | 660dee94ffb323ba11530d0af0bc01e3b6b80093 (patch) | |
tree | a2efe9b783d3f92b3854c297735b7469ac797869 | |
parent | ed164b18762123785502c8a06e5b51ac60a9a48a (diff) |
compare_hkl: Don't lie
-rw-r--r-- | src/compare_hkl.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/compare_hkl.c b/src/compare_hkl.c index 748a87ad..6fc7bc0b 100644 --- a/src/compare_hkl.c +++ b/src/compare_hkl.c @@ -415,10 +415,8 @@ int main(int argc, char *argv[]) } ncom = num_items(icommon); - STATUS("%i reflections with I < 3.0*sigma(I) rejected from '%s'\n", - rej1, afile); - STATUS("%i reflections with I < 3.0*sigma(I) rejected from '%s'\n", - rej2, bfile); + STATUS("%i reflections in '%s' had I < 3.0*sigma(I)\n", afile, rej1); + STATUS("%i reflections in '%s' had I < 3.0*sigma(I)\n", bfile, rej2); STATUS("%i,%i reflections: %i in common\n", num_items(i1), num_items(i2), ncom); |