summaryrefslogtreecommitdiffstats
path: root/src/H5D.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-07-16 21:00:29 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-07-16 21:00:29 (GMT)
commit390465e859661fac55bd9b29bd7df13413525b72 (patch)
tree3544b7dd1d271ecc3cada0f0e0cbe25adee54569 /src/H5D.c
parent30eadd6a1c0a60568e2224d658b4e6e3369714c2 (diff)
downloadhdf5-390465e859661fac55bd9b29bd7df13413525b72.zip
hdf5-390465e859661fac55bd9b29bd7df13413525b72.tar.gz
hdf5-390465e859661fac55bd9b29bd7df13413525b72.tar.bz2
[svn-r25422] minor changes to enum structs.
Diffstat (limited to 'src/H5D.c')
-rw-r--r--src/H5D.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5D.c b/src/H5D.c
index 3461b87..3dc7938 100644
--- a/src/H5D.c
+++ b/src/H5D.c
@@ -524,8 +524,8 @@ H5Dget_space_status(hid_t dset_id, H5D_space_status_t *allocation)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "invalid dataset identifier")
/* Read data space address through the VOL and return */
- if((ret_value=H5VL_dataset_get(dset, vol_plugin, H5VL_DATASET_GET_SPACE_STATUS,
- H5AC_dxpl_id, H5_EVENT_STACK_NULL, allocation)) < 0)
+ if((ret_value = H5VL_dataset_get(dset, vol_plugin, H5VL_DATASET_GET_SPACE_STATUS,
+ H5AC_dxpl_id, H5_EVENT_STACK_NULL, allocation)) < 0)
HGOTO_ERROR(H5E_INTERNAL, H5E_CANTGET, FAIL, "unable to get space status")
done: