summaryrefslogtreecommitdiffstats
path: root/test/gen_plist.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/gen_plist.c')
-rw-r--r--test/gen_plist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/gen_plist.c b/test/gen_plist.c
index e9db752..8e5e0f1 100644
--- a/test/gen_plist.c
+++ b/test/gen_plist.c
@@ -45,7 +45,7 @@ main(void)
double w0 = 0.5;
unsigned max_compact;
unsigned min_dense;
- const char * c_to_f = "x+32";
+ const char *c_to_f = "x+32";
int little_endian;
int word_length;
H5AC_cache_config_t my_cache_config = {H5AC__CURR_CACHE_CONFIG_VERSION,
@@ -84,7 +84,7 @@ main(void)
/* check endianess */
{
short int word = 0x0001;
- char * byte = (char *)&word;
+ char *byte = (char *)&word;
if (byte[0] == 1)
/* little endian */
@@ -448,7 +448,7 @@ encode_plist(hid_t plist_id, int little_endian, int word_length, const char *fil
{
int fd = 0; /* file descriptor */
herr_t ret = 0;
- void * temp_buf = NULL;
+ void *temp_buf = NULL;
size_t temp_size = 0;
ssize_t H5_ATTR_NDEBUG_UNUSED write_size;
char filename[1024];