summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative_token.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5VLnative_token.c')
-rw-r--r--src/H5VLnative_token.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLnative_token.c b/src/H5VLnative_token.c
index 4091c1d..78d0350 100644
--- a/src/H5VLnative_token.c
+++ b/src/H5VLnative_token.c
@@ -73,7 +73,7 @@ H5VL__native_token_cmp(void H5_ATTR_UNUSED *obj, const H5O_token_t *token1, cons
assert(token1);
assert(token2);
- *cmp_value = HDmemcmp(token1, token2, sizeof(H5O_token_t));
+ *cmp_value = memcmp(token1, token2, sizeof(H5O_token_t));
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5VL__native_token_cmp() */