aboutsummaryrefslogtreecommitdiff
path: root/src/check_hkl.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2010-12-08 16:30:35 -0700
committerThomas White <taw@physics.org>2012-02-22 15:27:09 +0100
commit57f325c7d13f60ba0c5f71921209e0f8d4f850bf (patch)
tree8e12c492e8b4fbd4208234b385c9738cc5029137 /src/check_hkl.c
parent19fafd8430ce2006af9151802534cfd2e12f5295 (diff)
Use correct accessor type for ESD lists
Diffstat (limited to 'src/check_hkl.c')
-rw-r--r--src/check_hkl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_hkl.c b/src/check_hkl.c
index 4ab76e43..385c2897 100644
--- a/src/check_hkl.c
+++ b/src/check_hkl.c
@@ -229,7 +229,7 @@ static void plot_shells(const double *ref, ReflItemList *items, UnitCell *cell,
d = resolution(cell, h, k, l) * 2.0;
val = lookup_intensity(ref, h, k, l);
- esd = lookup_intensity(sigma, h, k, l);
+ esd = lookup_sigma(sigma, h, k, l);
bin = -1;
for ( j=0; j<NBINS; j++ ) {