summaryrefslogtreecommitdiffstats
path: root/src/H5FD.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-07-10 20:16:25 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-07-10 20:16:25 (GMT)
commitb030664aaa6be65ec4c1c18d958ba122edf3a867 (patch)
tree91acdd4331dbcd8923a0c1191d4f1914d75b4bef /src/H5FD.c
parent2e66b5cf86c1a184e01eea6b67b52ac82648573a (diff)
downloadhdf5-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FD.c b/src/H5FD.c
index e136e12..547eb8f 100644
--- a/src/H5FD.c
+++ b/src/H5FD.c
@@ -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 */