summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-03-30 17:27:04 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-03-30 18:22:17 (GMT)
commit989b6c20635f581ac8ac0dc73323dd5818d50d69 (patch)
tree367013d348512f1e1e7f5e9ff5e691c0341026f9 /src
parent57ae4206ca7e3f1b8e8e982ba078af665bb35c36 (diff)
downloadhdf5-989b6c20635f581ac8ac0dc73323dd5818d50d69.zip
hdf5-989b6c20635f581ac8ac0dc73323dd5818d50d69.tar.gz
hdf5-989b6c20635f581ac8ac0dc73323dd5818d50d69.tar.bz2
Delete ridiculous comment and excess for-loop whitespace. NFCI.
Diffstat (limited to 'src')
-rw-r--r--src/H5Fvfd_swmr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fvfd_swmr.c b/src/H5Fvfd_swmr.c
index 8660137..904d80e 100644
--- a/src/H5Fvfd_swmr.c
+++ b/src/H5Fvfd_swmr.c
@@ -470,7 +470,7 @@ H5F_update_vfd_swmr_metadata_file(H5F_t *f, uint32_t num_entries,
*
* --Set entry_ptr to NULL
*/
- for ( i = 0; i < num_entries; i++ ) {
+ for (i = 0; i < num_entries; i++) {
if (index[i].entry_ptr == NULL)
continue;
@@ -527,7 +527,7 @@ H5F_update_vfd_swmr_metadata_file(H5F_t *f, uint32_t num_entries,
/* Set entry_ptr to NULL */
index[i].entry_ptr = NULL;
- } /* end for */
+ }
/* Construct and write index to the metadata file */
if ( H5F__vfd_swmr_construct_write_md_idx(f, num_entries, index) < 0 )