diff options
-rw-r--r-- | libcrystfel/src/image-hdf5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcrystfel/src/image-hdf5.c b/libcrystfel/src/image-hdf5.c index 0a222046..5461c8a5 100644 --- a/libcrystfel/src/image-hdf5.c +++ b/libcrystfel/src/image-hdf5.c @@ -743,7 +743,7 @@ double image_hdf5_get_value(const char *name, const char *filename, check = H5Sselect_hyperslab(sh, H5S_SELECT_SET, f_offset, NULL, f_count, NULL); if ( check <0 ) { - ERROR("Error selecting dataspace for float value"); + ERROR("Error selecting dataspace for float value\n"); free(f_offset); free(f_count); close_hdf5(fh); @@ -754,7 +754,7 @@ double image_hdf5_get_value(const char *name, const char *filename, check = H5Sselect_hyperslab(ms, H5S_SELECT_SET, m_offset, NULL, m_count, NULL); if ( check < 0 ) { - ERROR("Error selecting memory dataspace for float value"); + ERROR("Error selecting memory dataspace for float value\n"); free(f_offset); free(f_count); close_hdf5(fh); |