diff options
author | Thomas White <taw@physics.org> | 2012-03-06 14:46:13 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-03-06 14:46:13 +0100 |
commit | 3710defb709b7ab33ae7849873c4fb62de96e138 (patch) | |
tree | 0c50ad73099324891826efb2bbfc33a8ec03d8a3 /src/compare_hkl.c | |
parent | 95f05d7d455c9bfd28af83b72dfeb47b77fca621 (diff) |
Rename old array functions to get them out of the way of API consistency
Diffstat (limited to 'src/compare_hkl.c')
-rw-r--r-- | src/compare_hkl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compare_hkl.c b/src/compare_hkl.c index 3fc18fea..dde90990 100644 --- a/src/compare_hkl.c +++ b/src/compare_hkl.c @@ -446,12 +446,12 @@ int main(int argc, char *argv[]) /* Add divided version to 'output' list */ tr = add_refl(ratio, h, k, l); - set_int(tr, val1/val2); + set_intensity(tr, val1/val2); set_redundancy(tr, 1); } if ( ratiofile != NULL ) { - write_reflist(ratiofile, ratio, cell); + write_reflist(ratiofile, ratio); } reflist_free(ratio); |