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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gen_plist.c b/test/gen_plist.c
index 0892755..bd94e9c 100644
--- a/test/gen_plist.c
+++ b/test/gen_plist.c
@@ -463,7 +463,7 @@ encode_plist(hid_t plist_id, int little_endian, int word_length, const char *fil
if ((ret = H5Pencode2(plist_id, NULL, &temp_size, H5P_DEFAULT)) < 0)
assert(ret > 0);
- temp_buf = (void *)HDmalloc(temp_size);
+ temp_buf = (void *)malloc(temp_size);
assert(temp_buf);
if ((ret = H5Pencode2(plist_id, temp_buf, &temp_size, H5P_DEFAULT)) < 0)
@@ -477,7 +477,7 @@ encode_plist(hid_t plist_id, int little_endian, int word_length, const char *fil
HDclose(fd);
- HDfree(temp_buf);
+ free(temp_buf);
return 1;
}