Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)

* commit '887783eb0e9a1787c77092ed53a7737ad4aaac3a':
  Switch from HDatoll to HDstrtoll, for Windows compatibility.
This commit is contained in:
Allen Byrne 2017-03-16 11:28:11 -05:00
commit f21374c455

View File

@ -569,7 +569,7 @@ int parse_command_line(int argc, const char **argv, pack_opt_t* options)
break;
case 'G':
options->fs_pagesize = HDatoll( opt_arg );
options->fs_pagesize = HDstrtoll(opt_arg, NULL, 0);
if(options->fs_pagesize == 0)
/* To distinguish the "specified" zero value */
options->fs_pagesize = -1;