summaryrefslogtreecommitdiffstats
path: root/src/H5Epkg.h
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-26 21:45:46 (GMT)
committerGitHub <noreply@github.com>2022-07-26 21:45:46 (GMT)
commitae414872f50187e64cbd6cc8f076c22cf5df2d53 (patch)
treeb616f33f5daa89f213e7c64e04c63afde906e939 /src/H5Epkg.h
parent213eac2588369f75a11df6bb1788dde33c4b82e2 (diff)
downloadhdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.zip
hdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.tar.gz
hdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.tar.bz2
Develop clang 13 format (#1933)
* Update format source to clang 13 * More format changes
Diffstat (limited to 'src/H5Epkg.h')
-rw-r--r--src/H5Epkg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Epkg.h b/src/H5Epkg.h
index b11ee9e..11481ee 100644
--- a/src/H5Epkg.h
+++ b/src/H5Epkg.h
@@ -99,7 +99,7 @@ typedef struct H5E_cls_t {
/* Major or minor message */
typedef struct H5E_msg_t {
- char * msg; /* Message for error */
+ char *msg; /* Message for error */
H5E_type_t type; /* Type of error (major or minor) */
H5E_cls_t *cls; /* Which error class this message belongs to */
} H5E_msg_t;
@@ -109,7 +109,7 @@ struct H5E_t {
size_t nused; /* Num slots currently used in stack */
H5E_error2_t slot[H5E_NSLOTS]; /* Array of error records */
H5E_auto_op_t auto_op; /* Operator for 'automatic' error reporting */
- void * auto_data; /* Callback data for 'automatic error reporting */
+ void *auto_data; /* Callback data for 'automatic error reporting */
};
/*****************************/