diff options
author | Thomas White <taw@physics.org> | 2015-02-20 15:17:52 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2015-02-20 15:18:46 +0100 |
commit | ffc7de490021605d1b818ae2917146dad5a1cb2c (patch) | |
tree | 5a8e4dec179466a54b0f6a393d467b162e388e3c /libcrystfel/src/detector.c | |
parent | a388a84d3377812332194c134e404c94d20c7706 (diff) |
get_value() -> hdfile_get_value()
Diffstat (limited to 'libcrystfel/src/detector.c')
-rw-r--r-- | libcrystfel/src/detector.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcrystfel/src/detector.c b/libcrystfel/src/detector.c index 635aa5e2..4d1a15e5 100644 --- a/libcrystfel/src/detector.c +++ b/libcrystfel/src/detector.c @@ -568,8 +568,8 @@ void fill_in_values(struct detector *det, struct hdfile *f, struct event* ev) double val; int r; - r = get_value(f, p->clen_from, ev, &val, - H5T_NATIVE_DOUBLE); + r = hdfile_get_value(f, p->clen_from, ev, &val, + H5T_NATIVE_DOUBLE); if ( r ) { ERROR("Failed to read '%s'\n", p->clen_from); } else { |