summaryrefslogtreecommitdiffstats
path: root/test/swmr_reader.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 /test/swmr_reader.c
parenta90bdbbcfc6db6718d368fe7d0c570238e302bc7 (diff)
downloadhdf5-dd39b54c953854837cc316d80618f65fdb70a04a.zip
hdf5-dd39b54c953854837cc316d80618f65fdb70a04a.tar.gz
hdf5-dd39b54c953854837cc316d80618f65fdb70a04a.tar.bz2
Rename HDato*() to ato*() (#3201)
Diffstat (limited to 'test/swmr_reader.c')
-rw-r--r--test/swmr_reader.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/swmr_reader.c b/test/swmr_reader.c
index af4a6ae..5b0cacf 100644
--- a/test/swmr_reader.c
+++ b/test/swmr_reader.c
@@ -409,7 +409,7 @@ main(int argc, char *argv[])
switch (argv[u][1]) {
/* # of common symbols to poll */
case 'h':
- ncommon = HDatoi(argv[u + 1]);
+ ncommon = atoi(argv[u + 1]);
if (ncommon < 0)
usage();
u += 2;
@@ -417,7 +417,7 @@ main(int argc, char *argv[])
/* # of random symbols to poll */
case 'l':
- nrandom = HDatoi(argv[u + 1]);
+ nrandom = atoi(argv[u + 1]);
if (nrandom < 0)
usage();
u += 2;
@@ -432,7 +432,7 @@ main(int argc, char *argv[])
/* Random # seed */
case 'r':
use_seed = TRUE;
- temp = HDatoi(argv[u + 1]);
+ temp = atoi(argv[u + 1]);
if (temp < 0)
usage();
else
@@ -442,7 +442,7 @@ main(int argc, char *argv[])
/* # of seconds between polling */
case 's':
- poll_time = HDatoi(argv[u + 1]);
+ poll_time = atoi(argv[u + 1]);
if (poll_time < 0)
usage();
u += 2;
@@ -455,7 +455,7 @@ main(int argc, char *argv[])
} /* end if */
else {
/* Get the number of records to append */
- nseconds = HDatol(argv[u]);
+ nseconds = atol(argv[u]);
if (nseconds <= 0)
usage();