summaryrefslogtreecommitdiffstats
path: root/src/H5Epkg.h
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-27 17:28:11 (GMT)
committerGitHub <noreply@github.com>2022-07-27 17:28:11 (GMT)
commita0a1959c58973095194f2d9ac5f9b13bb7b14fb4 (patch)
tree3f36cbd14d9ede9f00c4c26affb9ecab5d1a860f /src/H5Epkg.h
parentf0690f13fb914ff39a32d88801eabcef759a0163 (diff)
downloadhdf5-a0a1959c58973095194f2d9ac5f9b13bb7b14fb4.zip
hdf5-a0a1959c58973095194f2d9ac5f9b13bb7b14fb4.tar.gz
hdf5-a0a1959c58973095194f2d9ac5f9b13bb7b14fb4.tar.bz2
clang 13 format #1933 (#1939)
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 */
};
/*****************************/