summaryrefslogtreecommitdiffstats
path: root/src/H5FDtest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5FDtest.c')
-rw-r--r--src/H5FDtest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDtest.c b/src/H5FDtest.c
index 4f2a5b2..694bae4 100644
--- a/src/H5FDtest.c
+++ b/src/H5FDtest.c
@@ -89,10 +89,10 @@ H5FD__supports_swmr_test(const char *vfd_name)
FUNC_ENTER_NOAPI_NOINIT_NOERR
- if (!vfd_name || !HDstrcmp(vfd_name, "") || !HDstrcmp(vfd_name, "nomatch"))
+ if (!vfd_name || !strcmp(vfd_name, "") || !strcmp(vfd_name, "nomatch"))
ret_value = true;
else
- ret_value = !HDstrcmp(vfd_name, "log") || !HDstrcmp(vfd_name, "sec2");
+ ret_value = !strcmp(vfd_name, "log") || !strcmp(vfd_name, "sec2");
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5FD__supports_swmr_test() */