summaryrefslogtreecommitdiffstats
path: root/test/mirror_vfd.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/mirror_vfd.c
parenta90bdbbcfc6db6718d368fe7d0c570238e302bc7 (diff)
downloadhdf5-dd39b54c953854837cc316d80618f65fdb70a04a.zip
hdf5-dd39b54c953854837cc316d80618f65fdb70a04a.tar.gz
hdf5-dd39b54c953854837cc316d80618f65fdb70a04a.tar.bz2
Rename HDato*() to ato*() (#3201)
Diffstat (limited to 'test/mirror_vfd.c')
-rw-r--r--test/mirror_vfd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mirror_vfd.c b/test/mirror_vfd.c
index 46b6de6..0ae4018 100644
--- a/test/mirror_vfd.c
+++ b/test/mirror_vfd.c
@@ -2302,7 +2302,7 @@ parse_args(int argc, char **argv, struct mt_opts *opts)
if (!HDstrncmp(argv[i], "--ip=", 5))
HDstrncpy(opts->ip, argv[i] + 5, H5FD_MIRROR_MAX_IP_LEN);
else if (!HDstrncmp(argv[i], "--port=", 7))
- opts->portno = HDatoi(argv[i] + 7);
+ opts->portno = atoi(argv[i] + 7);
else {
printf("Unrecognized option: '%s'\n", argv[i]);
return -1;