diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-07-07 21:38:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-07-07 21:38:35 (GMT) |
commit | 267787999532fa12bd36d3eb3ea334a864d4b1a1 (patch) | |
tree | 0ba4cf925bfbb7f9e02263751f8a278165236c91 | |
parent | ec2fbe0883f9e76df60bcfbebbd4b6f62d5a09e6 (diff) | |
download | hdf5-267787999532fa12bd36d3eb3ea334a864d4b1a1.zip hdf5-267787999532fa12bd36d3eb3ea334a864d4b1a1.tar.gz hdf5-267787999532fa12bd36d3eb3ea334a864d4b1a1.tar.bz2 |
[svn-r30161] Description:
Switch from atoll to strtoull, to make VS2012 happy.
Tested on:
MacOSX/64 10.11.5 (amazon) w/serial & parallel
(h5committest forthcoming)
-rw-r--r-- | tools/h5dump/h5dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c index 3b46912..562cfd5 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -638,7 +638,7 @@ parse_hsize_list(const char *h_list, subset_d *d) for (ptr = h_list; i < size_count && ptr && *ptr && *ptr != ';' && *ptr != ']'; ptr++) if(HDisdigit(*ptr)) { /* we should have an integer now */ - p_list[i++] = (hsize_t)HDatoll(ptr); + p_list[i++] = (hsize_t)HDstrtoull(ptr, NULL, 0); while (HDisdigit(*ptr)) /* scroll to end of integer */ |