summaryrefslogtreecommitdiffstats
path: root/src/H5Dint.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-11-23 21:11:58 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-11-23 21:11:58 (GMT)
commit4b6469218705845cf83f0e65c5ba2ce8b194552a (patch)
treeeec7be99bc9ffbc95ed632eb2ebd99a51ecdb1d9 /src/H5Dint.c
parent81d693a1d3bc3cc4bf78bc2c1651209a8829b36c (diff)
downloadhdf5-4b6469218705845cf83f0e65c5ba2ce8b194552a.zip
hdf5-4b6469218705845cf83f0e65c5ba2ce8b194552a.tar.gz
hdf5-4b6469218705845cf83f0e65c5ba2ce8b194552a.tar.bz2
[svn-r28454] Description:
Warning & code style cleanups, along with normalizations against trunk. Tested on: MacOSX/64 10.11.1 (amazon) w/serial & parallel (h5committest not required on this branch)
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r--src/H5Dint.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c
index ad0484e..3e54471 100644
--- a/src/H5Dint.c
+++ b/src/H5Dint.c
@@ -1446,7 +1446,6 @@ H5D_open(const H5G_loc_t *loc, hid_t dapl_id, hid_t dxpl_id)
/* We're the first dataset to use the the shared info */
dataset->shared->fo_count = 1;
-
} /* end if */
else {
/* Point to shared info */
@@ -1465,7 +1464,6 @@ H5D_open(const H5G_loc_t *loc, hid_t dapl_id, hid_t dxpl_id)
/* Increment object count for the object in the top file */
if(H5FO_top_incr(dataset->oloc.file, dataset->oloc.addr) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTINC, NULL, "can't increment object count")
-
} /* end else */
/* Set the dataset to return */
@@ -2811,7 +2809,6 @@ H5D__flush_real(H5D_t *dataset, hid_t dxpl_id)
HDassert(dataset);
HDassert(dataset->shared);
-
/* Avoid flushing the dataset (again) if it's closing */
if(!dataset->shared->closing) {