summaryrefslogtreecommitdiffstats
path: root/src/H5Eint.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-28 15:05:11 (GMT)
committerGitHub <noreply@github.com>2022-07-28 15:05:11 (GMT)
commit762c111350cc31137a80e24126b00d9aacf3b2a9 (patch)
tree8d21ed8a877bc60b9c517b7505ce80e2cf8031a9 /src/H5Eint.c
parentc1c4db3c4a0cbef6eceaab2f069e895936fbbe34 (diff)
downloadhdf5-762c111350cc31137a80e24126b00d9aacf3b2a9.zip
hdf5-762c111350cc31137a80e24126b00d9aacf3b2a9.tar.gz
hdf5-762c111350cc31137a80e24126b00d9aacf3b2a9.tar.bz2
clang 13 format #1933 (#1941)
Diffstat (limited to 'src/H5Eint.c')
-rw-r--r--src/H5Eint.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/H5Eint.c b/src/H5Eint.c
index ea6b767..1414de0 100644
--- a/src/H5Eint.c
+++ b/src/H5Eint.c
@@ -50,7 +50,7 @@
/* Printing information */
typedef struct H5E_print_t {
- FILE * stream;
+ FILE *stream;
H5E_cls_t cls;
} H5E_print_t;
@@ -204,12 +204,12 @@ static herr_t
H5E_walk1_cb(int n, H5E_error1_t *err_desc, void *client_data)
{
H5E_print_t *eprint = (H5E_print_t *)client_data;
- FILE * stream; /* I/O stream to print output to */
- H5E_cls_t * cls_ptr; /* Pointer to error class */
- H5E_msg_t * maj_ptr; /* Pointer to major error info */
- H5E_msg_t * min_ptr; /* Pointer to minor error info */
- const char * maj_str = "No major description"; /* Major error description */
- const char * min_str = "No minor description"; /* Minor error description */
+ FILE *stream; /* I/O stream to print output to */
+ H5E_cls_t *cls_ptr; /* Pointer to error class */
+ H5E_msg_t *maj_ptr; /* Pointer to major error info */
+ H5E_msg_t *min_ptr; /* Pointer to minor error info */
+ const char *maj_str = "No major description"; /* Major error description */
+ const char *min_str = "No minor description"; /* Minor error description */
unsigned have_desc = 1; /* Flag to indicate whether the error has a "real" description */
herr_t ret_value = SUCCEED;
@@ -327,12 +327,12 @@ static herr_t
H5E_walk2_cb(unsigned n, const H5E_error2_t *err_desc, void *client_data)
{
H5E_print_t *eprint = (H5E_print_t *)client_data;
- FILE * stream; /* I/O stream to print output to */
- H5E_cls_t * cls_ptr; /* Pointer to error class */
- H5E_msg_t * maj_ptr; /* Pointer to major error info */
- H5E_msg_t * min_ptr; /* Pointer to minor error info */
- const char * maj_str = "No major description"; /* Major error description */
- const char * min_str = "No minor description"; /* Minor error description */
+ FILE *stream; /* I/O stream to print output to */
+ H5E_cls_t *cls_ptr; /* Pointer to error class */
+ H5E_msg_t *maj_ptr; /* Pointer to major error info */
+ H5E_msg_t *min_ptr; /* Pointer to minor error info */
+ const char *maj_str = "No major description"; /* Major error description */
+ const char *min_str = "No minor description"; /* Minor error description */
unsigned have_desc = 1; /* Flag to indicate whether the error has a "real" description */
herr_t ret_value = SUCCEED;
@@ -680,7 +680,7 @@ H5E_printf_stack(H5E_t *estack, const char *file, const char *func, unsigned lin
int tmp_len; /* Current size of description buffer */
int desc_len; /* Actual length of description when formatted */
#endif /* H5_HAVE_VASPRINTF */
- char * tmp = NULL; /* Buffer to place formatted description in */
+ char *tmp = NULL; /* Buffer to place formatted description in */
hbool_t va_started = FALSE; /* Whether the variable argument list is open */
herr_t ret_value = SUCCEED; /* Return value */