summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5tools_ref.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lib/h5tools_ref.c')
-rw-r--r--tools/lib/h5tools_ref.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/lib/h5tools_ref.c b/tools/lib/h5tools_ref.c
index e7858c8..d89c546 100644
--- a/tools/lib/h5tools_ref.c
+++ b/tools/lib/h5tools_ref.c
@@ -108,7 +108,7 @@ ref_path_table_cmp(const void *key1, const void *key2)
if (thefile > 0)
H5Otoken_cmp(thefile, token1, token2, &cmp_value);
else
- cmp_value = HDmemcmp(token1, token2, sizeof(H5O_token_t));
+ cmp_value = memcmp(token1, token2, sizeof(H5O_token_t));
return cmp_value;
}
@@ -201,7 +201,7 @@ ref_path_table_lookup(const char *thepath, H5O_token_t *token)
return -1;
/* Return object token through parameter */
- HDmemcpy(token, &oi.token, sizeof(H5O_token_t));
+ memcpy(token, &oi.token, sizeof(H5O_token_t));
return 0;
}
@@ -230,7 +230,7 @@ ref_path_table_put(const char *path, const H5O_token_t *token)
if ((new_node = (ref_path_node_t *)malloc(sizeof(ref_path_node_t))) == NULL)
return (-1);
- HDmemcpy(&new_node->obj_token, token, sizeof(H5O_token_t));
+ memcpy(&new_node->obj_token, token, sizeof(H5O_token_t));
new_node->path = HDstrdup(path);
return (H5SL_insert(ref_path_table, new_node, &(new_node->obj_token)));