summaryrefslogtreecommitdiffstats
path: root/src/H5FDsubfiling/H5FDioc_threads.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-29 13:33:09 (GMT)
committerGitHub <noreply@github.com>2023-06-29 13:33:09 (GMT)
commitdd39b54c953854837cc316d80618f65fdb70a04a (patch)
tree6d7e2df3c2e57d977e44e1387ccbc15a48962fee /src/H5FDsubfiling/H5FDioc_threads.c
parenta90bdbbcfc6db6718d368fe7d0c570238e302bc7 (diff)
downloadhdf5-dd39b54c953854837cc316d80618f65fdb70a04a.zip
hdf5-dd39b54c953854837cc316d80618f65fdb70a04a.tar.gz
hdf5-dd39b54c953854837cc316d80618f65fdb70a04a.tar.bz2
Rename HDato*() to ato*() (#3201)
Diffstat (limited to 'src/H5FDsubfiling/H5FDioc_threads.c')
-rw-r--r--src/H5FDsubfiling/H5FDioc_threads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDsubfiling/H5FDioc_threads.c b/src/H5FDsubfiling/H5FDioc_threads.c
index e0d351f..fad5cf6 100644
--- a/src/H5FDsubfiling/H5FDioc_threads.c
+++ b/src/H5FDsubfiling/H5FDioc_threads.c
@@ -171,7 +171,7 @@ initialize_ioc_threads(void *_sf_context)
/* Allow experimentation with the number of helper threads */
if ((env_value = HDgetenv(H5FD_IOC_THREAD_POOL_SIZE)) != NULL) {
- int value_check = HDatoi(env_value);
+ int value_check = atoi(env_value);
if (value_check > 0) {
thread_pool_size = (unsigned int)value_check;
}