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/h5repack/h5repack_parse.c | |
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/h5repack/h5repack_parse.c')
-rw-r--r-- | tools/src/h5repack/h5repack_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/src/h5repack/h5repack_parse.c b/tools/src/h5repack/h5repack_parse.c index d4fa990..aa0e549 100644 --- a/tools/src/h5repack/h5repack_parse.c +++ b/tools/src/h5repack/h5repack_parse.c @@ -224,7 +224,7 @@ parse_filter(const char *str, unsigned *n_objs, filter_info_t *filt, pack_opt_t if (str[u] == ',') { stype[q] = '\0'; /* end digit */ if (l == -1) { - filt->filtn = HDatoi(stype); + filt->filtn = atoi(stype); l = 0; } else if (f == -1) { |