diff options
author | Thomas White <taw@bitwiz.org.uk> | 2010-12-08 16:30:35 -0700 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:09 +0100 |
commit | 57f325c7d13f60ba0c5f71921209e0f8d4f850bf (patch) | |
tree | 8e12c492e8b4fbd4208234b385c9738cc5029137 /src/check_hkl.c | |
parent | 19fafd8430ce2006af9151802534cfd2e12f5295 (diff) |
Use correct accessor type for ESD lists
Diffstat (limited to 'src/check_hkl.c')
-rw-r--r-- | src/check_hkl.c | 2 |
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++ ) { |