summaryrefslogtreecommitdiffstats
path: root/src/H5FD.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-08-20 17:49:13 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-08-20 17:49:13 (GMT)
commit942db9322725b3d73ecc1db1892fe12752b06519 (patch)
tree2ad31174f7637b85247ca8aa71e10c3910ba6700 /src/H5FD.c
parent9c020d5bd352410e51e9a8497f94f2198737e774 (diff)
downloadhdf5-942db9322725b3d73ecc1db1892fe12752b06519.zip
hdf5-942db9322725b3d73ecc1db1892fe12752b06519.tar.gz
hdf5-942db9322725b3d73ecc1db1892fe12752b06519.tar.bz2
[svn-r7386] Purpose:
Code cleanup & bug fix Description: More de-linting... Also correct a bug that lint exposed which was incrementing the incorrect driver ID of a file driver and also no saving the correct driver ID for the newly opened file. Platforms tested: FreeBSD 4.8 (sleipnir) too minor for h5committest
Diffstat (limited to 'src/H5FD.c')
-rw-r--r--src/H5FD.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/H5FD.c b/src/H5FD.c
index 0dfda38..0451e30 100644
--- a/src/H5FD.c
+++ b/src/H5FD.c
@@ -30,15 +30,15 @@
#define PABLO_MASK H5FD_mask
/* Packages needed by this file */
-#include "H5private.h" /*library functions */
-#include "H5Dprivate.h" /*datasets */
-#include "H5Eprivate.h" /*error handling */
-#include "H5Fpkg.h" /*files */
-#include "H5FDprivate.h" /*virtual file driver */
-#include "H5FLprivate.h" /*Free Lists */
-#include "H5Iprivate.h" /*interface abstraction layer */
-#include "H5MMprivate.h" /*memory management */
-#include "H5Pprivate.h" /*property lists */
+#include "H5private.h" /* Generic Functions */
+#include "H5Dprivate.h" /* Datasets */
+#include "H5Eprivate.h" /* Error handling */
+#include "H5Fpkg.h" /* File access */
+#include "H5FDprivate.h" /* File drivers */
+#include "H5FLprivate.h" /* Free lists */
+#include "H5Iprivate.h" /* IDs */
+#include "H5MMprivate.h" /* Memory management */
+#include "H5Pprivate.h" /* Property lists */
#ifdef H5_HAVE_FPHDF5
#include "H5FDfphdf5.h" /*Flexible Parallel HDF5 driver */