From 3a1c4de35969f10b9862111695e3148adc577445 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Fri, 20 Jul 2012 11:41:11 -0500 Subject: [svn-r22589] Change strto functions to the HD prefix versions. Tested: local --- tools/h5import/h5import.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/h5import/h5import.c b/tools/h5import/h5import.c index d6dcf1d..34870fb 100644 --- a/tools/h5import/h5import.c +++ b/tools/h5import/h5import.c @@ -1040,7 +1040,7 @@ static int processStrHDFData(FILE *strm, struct Input *in, hid_t file_id) line = 0; j = 0; - while (fgets(str,sizeof(str),strm)) { + while (HDfgets(str,sizeof(str),strm)) { str1 = str; str2 = NULL; str3 = NULL; @@ -1419,7 +1419,7 @@ static int processConfigurationFile(char *infile, struct Input *in) #endif if (HDstrcmp("H5T_VARIABLE;", temp)) { char *more = temp; - ival = strtoimax(more, &more, 10); + ival = HDstrtol(more, &more, 10); if (getInputSize(in, ival) == -1) { (void) HDfprintf(stderr, err5b, infile); HDfclose(strm); @@ -1529,7 +1529,7 @@ static int processConfigurationFile(char *infile, struct Input *in) #endif while (get_next_dim) { char *more = temp; - temp_dims[icount] = strtoull(more, &more, 10); + temp_dims[icount] = HDstrtoull(more, &more, 10); if (fscanf(strm, "%s", temp) != 1) { /* Dimension or end paren */ (void) HDfprintf(stderr, err6b, infile); HDfclose(strm); @@ -1623,7 +1623,7 @@ static int processConfigurationFile(char *infile, struct Input *in) } else { char *more = temp; - in->maxsizeOfDimension[i] = strtoull(more, &more, 10); + in->maxsizeOfDimension[i] = HDstrtoull(more, &more, 10); } if (fscanf(strm, "%s", temp) != 1) { /* max dim or end paren */ (void) HDfprintf(stderr, err16c, infile); @@ -1718,7 +1718,7 @@ static int processConfigurationFile(char *infile, struct Input *in) #endif while (get_next_dim) { char *more = temp; - in->sizeOfChunk[icount] = strtoull(more, &more, 10); + in->sizeOfChunk[icount] = HDstrtoull(more, &more, 10); if (fscanf(strm, "%s", temp) != 1) { /* Dimension or end paren */ (void) HDfprintf(stderr, err6b, infile); HDfclose(strm); -- cgit v0.12