summaryrefslogtreecommitdiffstats
path: root/src/H5FDonion_history.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FDonion_history.c')
-rw-r--r--src/H5FDonion_history.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDonion_history.c b/src/H5FDonion_history.c
index 875d638..32bf483 100644
--- a/src/H5FDonion_history.c
+++ b/src/H5FDonion_history.c
@@ -172,7 +172,7 @@ H5FD__onion_history_decode(unsigned char *buf, H5FD_onion_history_t *history)
assert(history != NULL);
assert(H5FD_ONION_HISTORY_VERSION_CURR == history->version);
- if (HDstrncmp((const char *)buf, H5FD_ONION_HISTORY_SIGNATURE, 4))
+ if (strncmp((const char *)buf, H5FD_ONION_HISTORY_SIGNATURE, 4))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, 0, "invalid signature");
if (H5FD_ONION_HISTORY_VERSION_CURR != buf[4])