diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-07-16 15:02:04 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-07-16 15:02:04 (GMT) |
commit | d9de869ef78becd3b3d90ce8ca79f8beb83f75f4 (patch) | |
tree | 8b46385849d4f7f06c8c4b9378c656f57f562bbe /src/H5Sall.c | |
parent | 17fb61e973efe750999180689c6d0b3a1ad45725 (diff) | |
download | hdf5-d9de869ef78becd3b3d90ce8ca79f8beb83f75f4.zip hdf5-d9de869ef78becd3b3d90ce8ca79f8beb83f75f4.tar.gz hdf5-d9de869ef78becd3b3d90ce8ca79f8beb83f75f4.tar.bz2 |
[svn-r1486] ./src/H5B.c [1.2, 1.3]
./src/H5Fistore.c [1.2, 1.3]
./src/H5Sall.c [1.2, 1.3]
Replaced second argument of HGOTO_ERROR/HRETURN_ERROR with a
minor error symbol (H5E_INTERNAL is a major error symbol).
Diffstat (limited to 'src/H5Sall.c')
-rw-r--r-- | src/H5Sall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Sall.c b/src/H5Sall.c index 9109589..db27b00 100644 --- a/src/H5Sall.c +++ b/src/H5Sall.c @@ -613,7 +613,7 @@ H5S_all_read(H5F_t *f, const H5O_layout_t *layout, const H5O_pline_t *pline, /* Read data from the file */ if (H5F_arr_read(f, xfer_parms, layout, pline, NULL, efl, size, size, mem_offset, file_offset, buf/*out*/)<0) { - HRETURN_ERROR(H5E_IO, H5E_INTERNAL, FAIL, + HRETURN_ERROR(H5E_IO, H5E_READERROR, FAIL, "unable to read data from the file"); } *must_convert = FALSE; @@ -715,7 +715,7 @@ H5S_all_write(H5F_t *f, const struct H5O_layout_t *layout, /* Write data to the file */ if (H5F_arr_write(f, xfer_parms, layout, pline, NULL, efl, size, size, mem_offset, file_offset, buf)<0) { - HRETURN_ERROR(H5E_IO, H5E_INTERNAL, FAIL, + HRETURN_ERROR(H5E_IO, H5E_WRITEERROR, FAIL, "unable to write data to the file"); } *must_convert = FALSE; |