summaryrefslogtreecommitdiffstats
path: root/src/H5Zscaleoffset.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-05-05 02:01:23 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-05-05 02:01:23 (GMT)
commit8e27e7357506958128d087c4e93e3dcb4fb52ace (patch)
treeaacca527aede81daddad6707c2f9346fc933a773 /src/H5Zscaleoffset.c
parent16eda679e306fde7fec41f5ff1910be86645e745 (diff)
downloadhdf5-8e27e7357506958128d087c4e93e3dcb4fb52ace.zip
hdf5-8e27e7357506958128d087c4e93e3dcb4fb52ace.tar.gz
hdf5-8e27e7357506958128d087c4e93e3dcb4fb52ace.tar.bz2
Brings atom-->ID and other ID-related changes from develop
Diffstat (limited to 'src/H5Zscaleoffset.c')
-rw-r--r--src/H5Zscaleoffset.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/H5Zscaleoffset.c b/src/H5Zscaleoffset.c
index 6577f73..281bb7f 100644
--- a/src/H5Zscaleoffset.c
+++ b/src/H5Zscaleoffset.c
@@ -748,8 +748,6 @@ H5Z_class2_t H5Z_SCALEOFFSET[1] = {{
* Programmer: Xiaowen Wu
* Friday, February 4, 2005
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
static htri_t
@@ -802,8 +800,6 @@ done:
* Programmer: Xiaowen Wu
* Wednesday, April 13, 2005
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
static enum H5Z_scaleoffset_t
@@ -931,8 +927,6 @@ H5Z_scaleoffset_set_parms_fillval(H5P_genplist_t *dcpl_plist, H5T_t *type, enum
* Programmer: Xiaowen Wu
* Friday, February 4, 2005
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
static herr_t
@@ -957,7 +951,7 @@ H5Z_set_local_scaleoffset(hid_t dcpl_id, hid_t type_id, hid_t space_id)
/* Get the plist structure */
if (NULL == (dcpl_plist = H5P_object_verify(dcpl_id, H5P_DATASET_CREATE)))
- HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID")
+ HGOTO_ERROR(H5E_ID, H5E_BADID, FAIL, "can't find object for ID")
/* Get datatype */
if (NULL == (type = (H5T_t *)H5I_object_verify(type_id, H5I_DATATYPE)))