diff options
author | David Young <dyoung@hdfgroup.org> | 2020-07-10 20:16:25 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-07-10 20:16:25 (GMT) |
commit | b030664aaa6be65ec4c1c18d958ba122edf3a867 (patch) | |
tree | 91acdd4331dbcd8923a0c1191d4f1914d75b4bef /src/H5FD.c | |
parent | 2e66b5cf86c1a184e01eea6b67b52ac82648573a (diff) | |
download | hdf5-b030664aaa6be65ec4c1c18d958ba122edf3a867.zip hdf5-b030664aaa6be65ec4c1c18d958ba122edf3a867.tar.gz hdf5-b030664aaa6be65ec4c1c18d958ba122edf3a867.tar.bz2 |
Delete gratuitous comment and initialization from a variable declaration.
Diffstat (limited to 'src/H5FD.c')
-rw-r--r-- | src/H5FD.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -713,7 +713,7 @@ H5FD_t * H5FD_open(const char *name, unsigned flags, hid_t fapl_id, haddr_t maxaddr) { H5FD_class_t *driver; /* VFD for file */ - H5FD_t *file = NULL; /* VFD file struct */ + H5FD_t *file; H5FD_driver_prop_t driver_prop; /* Property for driver ID & info */ H5P_genplist_t *plist; /* Property list pointer */ unsigned long driver_flags = 0; /* File-inspecific driver feature flags */ |