diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/h5test.c | 2 | ||||
-rw-r--r-- | test/h5test.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/h5test.c b/test/h5test.c index 4dff00d..755ae93 100644 --- a/test/h5test.c +++ b/test/h5test.c @@ -1195,7 +1195,7 @@ h5_set_info_object(void) valp++; /* copy key/value pair into temporary buffer */ - len = strcspn(valp, ";"); + len = HDstrcspn(valp, ";"); next = &valp[len]; if (NULL == (key_val = (char *)HDcalloc(1, len + 1))) return -1; diff --git a/test/h5test.h b/test/h5test.h index db1a887..2855fb5 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -22,7 +22,7 @@ /* * Include required headers. This file tests internal library functions, - * so we include the private headers here, along with developer routines. + * so we include the private headers here. */ #include "hdf5.h" #include "H5private.h" |