summaryrefslogtreecommitdiffstats
path: root/src/H5Cmpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Cmpio.c')
-rw-r--r--src/H5Cmpio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Cmpio.c b/src/H5Cmpio.c
index d423c9e..d5fa05d 100644
--- a/src/H5Cmpio.c
+++ b/src/H5Cmpio.c
@@ -186,13 +186,13 @@ H5C_apply_candidate_list(H5F_t *f, H5C_t *cache_ptr, unsigned num_candidates, ha
assert(mpi_rank < mpi_size);
/* Initialize the entries_to_flush and entries_to_clear arrays */
- HDmemset(entries_to_flush, 0, sizeof(entries_to_flush));
- HDmemset(entries_to_clear, 0, sizeof(entries_to_clear));
+ memset(entries_to_flush, 0, sizeof(entries_to_flush));
+ memset(entries_to_clear, 0, sizeof(entries_to_clear));
#if H5C_APPLY_CANDIDATE_LIST__DEBUG
fprintf(stdout, "%s:%d: setting up candidate assignment table.\n", __func__, mpi_rank);
- HDmemset(tbl_buf, 0, sizeof(tbl_buf));
+ memset(tbl_buf, 0, sizeof(tbl_buf));
HDsnprintf(tbl_buf, sizeof(tbl_buf), "candidate list = ");
for (u = 0; u < num_candidates; u++)