mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
[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)
This commit is contained in:
parent
ec2fbe0883
commit
2677879995
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user