summaryrefslogtreecommitdiffstats
path: root/src/H5VLpassthru.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-03-25 00:39:37 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-03-25 00:39:37 (GMT)
commitfeb20aac304b39e18c70f88cae2f7cf7d5c82db2 (patch)
treee15d7e751af4e3c42e77ea955d91db4cf27a71cf /src/H5VLpassthru.h
parentbdac2ecdbff2c389a222b3d93ff1eb1d23ec6b23 (diff)
downloadhdf5-feb20aac304b39e18c70f88cae2f7cf7d5c82db2.zip
hdf5-feb20aac304b39e18c70f88cae2f7cf7d5c82db2.tar.gz
hdf5-feb20aac304b39e18c70f88cae2f7cf7d5c82db2.tar.bz2
Formats the source and updates the gcc warning pragmas
Diffstat (limited to 'src/H5VLpassthru.h')
-rw-r--r--src/H5VLpassthru.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/H5VLpassthru.h b/src/H5VLpassthru.h
index d145bcd..a8ef42c 100644
--- a/src/H5VLpassthru.h
+++ b/src/H5VLpassthru.h
@@ -18,23 +18,22 @@
#define _H5VLpassthru_H
/* Public headers needed by this file */
-#include "H5VLpublic.h" /* Virtual Object Layer */
+#include "H5VLpublic.h" /* Virtual Object Layer */
/* Identifier for the pass-through VOL connector */
-#define H5VL_PASSTHRU (H5VL_pass_through_register())
+#define H5VL_PASSTHRU (H5VL_pass_through_register())
/* Characteristics of the pass-through VOL connector */
-#define H5VL_PASSTHRU_NAME "pass_through"
-#define H5VL_PASSTHRU_VALUE 505 /* VOL connector ID */
-#define H5VL_PASSTHRU_VERSION 0
+#define H5VL_PASSTHRU_NAME "pass_through"
+#define H5VL_PASSTHRU_VALUE 505 /* VOL connector ID */
+#define H5VL_PASSTHRU_VERSION 0
/* Pass-through VOL connector info */
typedef struct H5VL_pass_through_info_t {
- hid_t under_vol_id; /* VOL ID for under VOL */
- void *under_vol_info; /* VOL info for under VOL */
+ hid_t under_vol_id; /* VOL ID for under VOL */
+ void *under_vol_info; /* VOL info for under VOL */
} H5VL_pass_through_info_t;
-
#ifdef __cplusplus
extern "C" {
#endif
@@ -46,4 +45,3 @@ H5_DLL hid_t H5VL_pass_through_register(void);
#endif
#endif /* _H5VLpassthru_H */
-