summaryrefslogtreecommitdiffstats
path: root/src/H5FDonion_header.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FDonion_header.c')
-rw-r--r--src/H5FDonion_header.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDonion_header.c b/src/H5FDonion_header.c
index 55a632c..e6790b3 100644
--- a/src/H5FDonion_header.c
+++ b/src/H5FDonion_header.c
@@ -134,7 +134,7 @@ H5FD__onion_header_decode(unsigned char *buf, H5FD_onion_header_t *header)
assert(header != NULL);
assert(H5FD_ONION_HEADER_VERSION_CURR == header->version);
- if (HDstrncmp((const char *)buf, H5FD_ONION_HEADER_SIGNATURE, 4))
+ if (strncmp((const char *)buf, H5FD_ONION_HEADER_SIGNATURE, 4))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, 0, "invalid header signature");
if (buf[4] != H5FD_ONION_HEADER_VERSION_CURR)