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/h5copy | |
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/h5copy')
-rw-r--r-- | tools/src/h5copy/h5copy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/src/h5copy/h5copy.c b/tools/src/h5copy/h5copy.c index deae9a9..fe0c031 100644 --- a/tools/src/h5copy/h5copy.c +++ b/tools/src/h5copy/h5copy.c @@ -282,7 +282,7 @@ main(int argc, char *argv[]) case 'E': if (H5_optarg != NULL) - enable_error_stack = HDatoi(H5_optarg); + enable_error_stack = atoi(H5_optarg); else enable_error_stack = 1; break; |