summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-04-02 20:54:29 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-04-02 20:54:29 (GMT)
commita1175c1b98d499fc765ea6c19452701403f01a65 (patch)
tree1850712ae2f7d61697929b3efecdc866b2a2207f /src
parent40c638dcab8da3aab24fdb754e10dcfa3d7dc7e6 (diff)
downloadhdf5-a1175c1b98d499fc765ea6c19452701403f01a65.zip
hdf5-a1175c1b98d499fc765ea6c19452701403f01a65.tar.gz
hdf5-a1175c1b98d499fc765ea6c19452701403f01a65.tar.bz2
Remove superfluous comment. Remove unnecessary variable
initializations: the compiler will tell us if the variables are used before they're set. NFCI.
Diffstat (limited to 'src')
-rw-r--r--src/H5Fvfd_swmr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Fvfd_swmr.c b/src/H5Fvfd_swmr.c
index 0cee83f..9b54fac 100644
--- a/src/H5Fvfd_swmr.c
+++ b/src/H5Fvfd_swmr.c
@@ -626,9 +626,9 @@ H5F_vfd_swmr_writer__delay_write(H5F_shared_t *shared, uint64_t page,
uint64_t *untilp)
{
uint64_t until;
- H5FD_vfd_swmr_idx_entry_t * ie_ptr = NULL;
- H5FD_vfd_swmr_idx_entry_t * idx = NULL;
- herr_t ret_value = SUCCEED; /* Return value */
+ H5FD_vfd_swmr_idx_entry_t *ie_ptr;
+ H5FD_vfd_swmr_idx_entry_t *idx;
+ herr_t ret_value = SUCCEED;
FUNC_ENTER_NOAPI(FAIL)