summaryrefslogtreecommitdiffstats
path: root/src/H5Fint.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2019-08-04 23:38:36 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2019-08-04 23:38:36 (GMT)
commit5fe1216a4e6af8feef0551f7bece8a0e193310a9 (patch)
tree357b147c218af566ce2cf8c6ef9c210d98b7829f /src/H5Fint.c
parentab1ce69900caa0b249e07db8992e66f95b0af1dc (diff)
parent905d40aa6f6eb603c5507e7967130760e3a2e43c (diff)
downloadhdf5-5fe1216a4e6af8feef0551f7bece8a0e193310a9.zip
hdf5-5fe1216a4e6af8feef0551f7bece8a0e193310a9.tar.gz
hdf5-5fe1216a4e6af8feef0551f7bece8a0e193310a9.tar.bz2
Merge pull request #1819 in HDFFV/hdf5 from ~KOZIOL/hdf5:develop to develop
* commit '905d40aa6f6eb603c5507e7967130760e3a2e43c': Fix return type for H5Sselect_intersect_block(). Updated H5TRACE macro. Add H5Sselect_shape_same and H5Sselect_intersect_block API routines, along with tests and minor cleanups and refactorings.
Diffstat (limited to 'src/H5Fint.c')
-rw-r--r--src/H5Fint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fint.c b/src/H5Fint.c
index 758900b..7ed3ca8 100644
--- a/src/H5Fint.c
+++ b/src/H5Fint.c
@@ -868,7 +868,7 @@ H5F__is_hdf5(const char *name, hid_t fapl_id)
/* The file is an hdf5 file if the hdf5 file signature can be found */
if(H5FD_locate_signature(file, &sig_addr) < 0)
- HGOTO_ERROR(H5E_FILE, H5E_NOTHDF5, FAIL, "unable to locate file signature")
+ HGOTO_ERROR(H5E_FILE, H5E_NOTHDF5, FAIL, "error while trying to locate file signature")
ret_value = (HADDR_UNDEF != sig_addr);
done: