diff options
author | Thomas White <taw@physics.org> | 2019-07-16 13:50:18 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-07-16 13:50:18 +0200 |
commit | ff4b3d002c42a6663e8bd521ecdd60acf21edcc7 (patch) | |
tree | 0a62d6d69c2ccabfdd398b99c084e1cf956aeb16 /libcrystfel | |
parent | da65d665e36d27ae1b83e2c4031f515ea7a0c464 (diff) |
Remove warnings about non-scalar values
Already handled by return codes.
Diffstat (limited to 'libcrystfel')
-rw-r--r-- | libcrystfel/src/hdf5-file.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libcrystfel/src/hdf5-file.c b/libcrystfel/src/hdf5-file.c index 916b3244..dc6ce84a 100644 --- a/libcrystfel/src/hdf5-file.c +++ b/libcrystfel/src/hdf5-file.c @@ -2138,7 +2138,6 @@ char *hdfile_get_string_value(struct hdfile *f, const char *name, snprintf(tmp, 255, "%f", buf_f); return tmp; } else { - ERROR("Failed to read value\n"); return NULL; } break; @@ -2157,7 +2156,6 @@ char *hdfile_get_string_value(struct hdfile *f, const char *name, return tmp; } else { - ERROR("Failed to read value\n"); return NULL; } break; |