summaryrefslogtreecommitdiffstats
path: root/examples
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 /examples
parentc1c4db3c4a0cbef6eceaab2f069e895936fbbe34 (diff)
downloadhdf5-762c111350cc31137a80e24126b00d9aacf3b2a9.zip
hdf5-762c111350cc31137a80e24126b00d9aacf3b2a9.tar.gz
hdf5-762c111350cc31137a80e24126b00d9aacf3b2a9.tar.bz2
clang 13 format #1933 (#1941)
Diffstat (limited to 'examples')
-rw-r--r--examples/h5_attribute.c4
-rw-r--r--examples/h5_dtransform.c2
-rw-r--r--examples/h5_elink_unix2win.c2
-rw-r--r--examples/h5_group.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/examples/h5_attribute.c b/examples/h5_attribute.c
index d88f589..f0a6aa5 100644
--- a/examples/h5_attribute.c
+++ b/examples/h5_attribute.c
@@ -190,7 +190,7 @@ main(void)
ret = H5Oget_info(dataset, &oinfo);
for (i = 0; i < (unsigned)oinfo.num_attrs; i++) {
attr = H5Aopen_by_idx(dataset, ".", H5_INDEX_CRT_ORDER, H5_ITER_INC, (hsize_t)i, H5P_DEFAULT,
- H5P_DEFAULT);
+ H5P_DEFAULT);
atype = H5Aget_type(attr);
type_class = H5Tget_class(atype);
if (type_class == H5T_STRING) {
@@ -229,7 +229,7 @@ attr_info(hid_t loc_id, const char *name, const H5A_info_t *ainfo, void *opdata)
herr_t ret;
int i;
size_t npoints; /* Number of elements in the array attribute. */
- float * float_array; /* Pointer to the array attribute. */
+ float *float_array; /* Pointer to the array attribute. */
/* avoid warnings */
opdata = opdata;
diff --git a/examples/h5_dtransform.c b/examples/h5_dtransform.c
index a364ec1..576ad60 100644
--- a/examples/h5_dtransform.c
+++ b/examples/h5_dtransform.c
@@ -72,7 +72,7 @@ main(void)
hid_t dxpl_id_f_to_c, dxpl_id_c_to_f; /* data transform handles */
const char *f_to_c = "(5/9.0)*(x-32)";
const char *c_to_f = "(9/5.0)*x + 32";
- char * transform;
+ char *transform;
float windchillC[ROWS][COLS];
int i, j, transform_size;
diff --git a/examples/h5_elink_unix2win.c b/examples/h5_elink_unix2win.c
index bc2e246..a22dc97 100644
--- a/examples/h5_elink_unix2win.c
+++ b/examples/h5_elink_unix2win.c
@@ -43,7 +43,7 @@ elink_unix2win_trav(const char *link_name, hid_t cur_group, const void *udata, s
hid_t fid;
const char *file_name;
const char *obj_name;
- char * new_fname = NULL; /* Buffer allocated to hold Unix file path */
+ char *new_fname = NULL; /* Buffer allocated to hold Unix file path */
ssize_t prefix_len; /* External link prefix length */
size_t fname_len;
size_t start_pos; /* Initial position in new_fname buffer */
diff --git a/examples/h5_group.c b/examples/h5_group.c
index 59b0422..5512461 100644
--- a/examples/h5_group.c
+++ b/examples/h5_group.c
@@ -82,7 +82,7 @@ main(void)
dims[1] = 20;
dataspace = H5Screate_simple(RANK, dims, NULL);
dataset = H5Dcreate2(file, "/Data/Float_Data", H5T_NATIVE_FLOAT, dataspace, H5P_DEFAULT, H5P_DEFAULT,
- H5P_DEFAULT);
+ H5P_DEFAULT);
/*
*Close the second dataset and file.