summaryrefslogtreecommitdiffstats
path: root/src/H5Ddeprec.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-11-04 16:44:39 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-11-04 16:44:39 (GMT)
commit33a18df797719e423543ed8a177d886bc85b275d (patch)
tree80cdc8835e08817d91f99d9a5419de5b18fa8963 /src/H5Ddeprec.c
parentb1e97e651528704283fa42445120426080e0817f (diff)
parent52bff896a7e57d1c1b19438b8be76b2cb01ae94b (diff)
downloadhdf5-33a18df797719e423543ed8a177d886bc85b275d.zip
hdf5-33a18df797719e423543ed8a177d886bc85b275d.tar.gz
hdf5-33a18df797719e423543ed8a177d886bc85b275d.tar.bz2
[svn-r25778] merge from trunk.
Diffstat (limited to 'src/H5Ddeprec.c')
-rw-r--r--src/H5Ddeprec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Ddeprec.c b/src/H5Ddeprec.c
index cf68652..e87cbdb 100644
--- a/src/H5Ddeprec.c
+++ b/src/H5Ddeprec.c
@@ -143,7 +143,7 @@ H5D__term_deprec_interface(void)
* properties (DCPL_ID).
*
* All arguments are copied into the dataset, so the caller is
- * allowed to derive new types, dataspaces, and creation
+ * allowed to derive new types, data spaces, and creation
* parameters from the old ones and reuse them in calls to
* create other datasets.
*
@@ -356,9 +356,9 @@ H5D__extend(H5D_t *dataset, const hsize_t *size, hid_t dxpl_id)
if((rank = H5S_get_simple_extent_dims(space, curr_dims, NULL)) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTGET, FAIL, "can't get dataset dimensions")
- /* Increase the size of the dataspace */
+ /* Increase the size of the data space */
if((changed = H5S_extend(space, size)) < 0)
- HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, FAIL, "unable to increase size of dataspace")
+ HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, FAIL, "unable to increase size of data space")
/* Updated the dataset's info if the dataspace was successfully extended */
if(changed) {