aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/compare_hkl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compare_hkl.c b/src/compare_hkl.c
index 27e97564..6aca8869 100644
--- a/src/compare_hkl.c
+++ b/src/compare_hkl.c
@@ -180,7 +180,8 @@ static void plot_shells(RefList *list1, RefList *list2, double scale,
double r, cen;
cen = rmins[i] + (rmaxs[i] - rmins[i])/2.0;
r = (2.0*(num[i]/den)*((double)ctot/cts[i]))/sqrt(2.0);
- fprintf(fh, "%10.3f %10.2f\n", cen*1.0e-9, r*100.0);
+ fprintf(fh, "%10.3f %10.2f %10i\n",
+ cen*1.0e-9, r*100.0, cts[i]);
}