summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-10-19 14:39:13 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-10-19 14:39:13 (GMT)
commita04ea65140bc690cbe056e27a7e6a2983443f2bf (patch)
treed6aedd80987fca34b958833dc185fd80bfcae9f6 /src
parentec13e5f872108a14b605b6b0e7d6cb7989ec76f8 (diff)
downloadhdf5-a04ea65140bc690cbe056e27a7e6a2983443f2bf.zip
hdf5-a04ea65140bc690cbe056e27a7e6a2983443f2bf.tar.gz
hdf5-a04ea65140bc690cbe056e27a7e6a2983443f2bf.tar.bz2
Whitespace changes
Diffstat (limited to 'src')
-rw-r--r--src/H5FDcore.c12
-rw-r--r--src/H5FDdirect.c22
-rw-r--r--src/H5FDfamily.c2
-rw-r--r--src/H5FDhdfs.c10
4 files changed, 23 insertions, 23 deletions
diff --git a/src/H5FDcore.c b/src/H5FDcore.c
index c471113..96b1a42 100644
--- a/src/H5FDcore.c
+++ b/src/H5FDcore.c
@@ -504,9 +504,9 @@ H5FD__core_term(void)
herr_t
H5Pset_fapl_core(hid_t fapl_id, size_t increment, hbool_t backing_store)
{
- H5FD_core_fapl_t fa;
- H5P_genplist_t * plist; /* Property list pointer */
- herr_t ret_value;
+ H5P_genplist_t * plist; /* Property list pointer */
+ H5FD_core_fapl_t fa; /* Core VFD info */
+ herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_API(FAIL)
H5TRACE3("e", "izb", fapl_id, increment, backing_store);
@@ -539,8 +539,8 @@ done:
herr_t
H5Pget_fapl_core(hid_t fapl_id, size_t *increment /*out*/, hbool_t *backing_store /*out*/)
{
- H5P_genplist_t * plist; /* Property list pointer */
- const H5FD_core_fapl_t *fa;
+ H5P_genplist_t * plist; /* Property list pointer */
+ const H5FD_core_fapl_t *fa; /* Core VFD info */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_API(FAIL)
@@ -579,7 +579,7 @@ static void *
H5FD__core_fapl_get(H5FD_t *_file)
{
H5FD_core_t * file = (H5FD_core_t *)_file;
- H5FD_core_fapl_t *fa;
+ H5FD_core_fapl_t *fa; /* Core VFD info */
void * ret_value = NULL; /* Return value */
FUNC_ENTER_STATIC
diff --git a/src/H5FDdirect.c b/src/H5FDdirect.c
index c314ae9..21cefef 100644
--- a/src/H5FDdirect.c
+++ b/src/H5FDdirect.c
@@ -22,15 +22,15 @@
#include "H5FDdrvr_module.h" /* This source code file is part of the H5FD driver module */
-#include "H5private.h" /* Generic Functions */
-#include "H5Eprivate.h" /* Error handling */
-#include "H5Fprivate.h" /* File access */
-#include "H5FDprivate.h" /* File drivers */
-#include "H5FDdirect.h" /* Direct file driver */
-#include "H5FLprivate.h" /* Free Lists */
-#include "H5Iprivate.h" /* IDs */
-#include "H5MMprivate.h" /* Memory management */
-#include "H5Pprivate.h" /* Property lists */
+#include "H5private.h" /* Generic Functions */
+#include "H5Eprivate.h" /* Error handling */
+#include "H5Fprivate.h" /* File access */
+#include "H5FDprivate.h" /* File drivers */
+#include "H5FDdirect.h" /* Direct file driver */
+#include "H5FLprivate.h" /* Free Lists */
+#include "H5Iprivate.h" /* IDs */
+#include "H5MMprivate.h" /* Memory management */
+#include "H5Pprivate.h" /* Property lists */
#ifdef H5_HAVE_DIRECT
@@ -1317,9 +1317,9 @@ done:
static herr_t
H5FD_direct_lock(H5FD_t *_file, hbool_t rw)
{
- H5FD_direct_t *file = (H5FD_direct_t *)_file; /* VFD file struct */
+ H5FD_direct_t *file = (H5FD_direct_t *)_file; /* VFD file struct */
int lock_flags; /* file locking flags */
- herr_t ret_value = SUCCEED; /* Return value */
+ herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI_NOINIT
diff --git a/src/H5FDfamily.c b/src/H5FDfamily.c
index c73b8c5..cb57acb 100644
--- a/src/H5FDfamily.c
+++ b/src/H5FDfamily.c
@@ -313,7 +313,7 @@ done:
* Function: H5FD__family_fapl_get
*
* Purpose: Gets a file access property list which could be used to
- * create an identical file.
+ * create an identical file.
*
* Return: Success: Ptr to new file access property list.
*
diff --git a/src/H5FDhdfs.c b/src/H5FDhdfs.c
index daebeda..f1505d5 100644
--- a/src/H5FDhdfs.c
+++ b/src/H5FDhdfs.c
@@ -47,11 +47,11 @@
* some bad symbol interpretation that raises a warning that is out of our
* control.
*/
-H5_GCC_DIAG_OFF(strict - prototypes)
-H5_GCC_DIAG_OFF(undef)
+H5_GCC_DIAG_OFF("strict-prototypes")
+H5_GCC_DIAG_OFF("undef")
#include <hdfs.h>
-H5_GCC_DIAG_ON(strict - prototypes)
-H5_GCC_DIAG_ON(undef)
+H5_GCC_DIAG_ON("strict-prototypes")
+H5_GCC_DIAG_ON("undef")
/* toggle function call prints: 1 turns on */
#define HDFS_DEBUG 0
@@ -609,7 +609,7 @@ done:
* Function: H5Pset_fapl_hdfs
*
* Purpose: Modify the file access property list to use the H5FD_HDFS
- * driver defined in this source file. All driver specfic
+ * driver defined in this source file. All driver specific
* properties are passed in as a pointer to a suitably
* initialized instance of H5FD_hdfs_fapl_t
*