diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-06-29 13:33:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-29 13:33:09 (GMT) |
commit | dd39b54c953854837cc316d80618f65fdb70a04a (patch) | |
tree | 6d7e2df3c2e57d977e44e1387ccbc15a48962fee /tools/src/h5stat | |
parent | a90bdbbcfc6db6718d368fe7d0c570238e302bc7 (diff) | |
download | hdf5-dd39b54c953854837cc316d80618f65fdb70a04a.zip hdf5-dd39b54c953854837cc316d80618f65fdb70a04a.tar.gz hdf5-dd39b54c953854837cc316d80618f65fdb70a04a.tar.bz2 |
Rename HDato*() to ato*() (#3201)
Diffstat (limited to 'tools/src/h5stat')
-rw-r--r-- | tools/src/h5stat/h5stat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/src/h5stat/h5stat.c b/tools/src/h5stat/h5stat.c index 23bde1a..fc93dfb 100644 --- a/tools/src/h5stat/h5stat.c +++ b/tools/src/h5stat/h5stat.c @@ -841,7 +841,7 @@ parse_command_line(int argc, const char *const *argv, struct handler_t **hand_re case 'E': if (H5_optarg != NULL) - enable_error_stack = HDatoi(H5_optarg); + enable_error_stack = atoi(H5_optarg); else enable_error_stack = 1; break; @@ -868,7 +868,7 @@ parse_command_line(int argc, const char *const *argv, struct handler_t **hand_re case 'l': if (H5_optarg) { - sgroups_threshold = HDatoi(H5_optarg); + sgroups_threshold = atoi(H5_optarg); if (sgroups_threshold < 1) { error_msg("Invalid threshold for small groups\n"); goto error; @@ -891,7 +891,7 @@ parse_command_line(int argc, const char *const *argv, struct handler_t **hand_re case 'm': if (H5_optarg) { - sdsets_threshold = HDatoi(H5_optarg); + sdsets_threshold = atoi(H5_optarg); if (sdsets_threshold < 1) { error_msg("Invalid threshold for small datasets\n"); goto error; @@ -914,7 +914,7 @@ parse_command_line(int argc, const char *const *argv, struct handler_t **hand_re case 'a': if (H5_optarg) { - sattrs_threshold = HDatoi(H5_optarg); + sattrs_threshold = atoi(H5_optarg); if (sattrs_threshold < 1) { error_msg("Invalid threshold for small # of attributes\n"); goto error; |