summaryrefslogtreecommitdiffstats
path: root/hl/test
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-07-26 21:18:39 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-07-26 21:18:39 (GMT)
commita7d74160d043310d3819692c0aff5074bf466b1a (patch)
tree006bf89a597ed6aab7c44f20dc2d674abe03df37 /hl/test
parentf723e0e7f19b778d9c865982fda5f76cc2f875e0 (diff)
downloadhdf5-a7d74160d043310d3819692c0aff5074bf466b1a.zip
hdf5-a7d74160d043310d3819692c0aff5074bf466b1a.tar.gz
hdf5-a7d74160d043310d3819692c0aff5074bf466b1a.tar.bz2
Correct generator and add HD prefix
Diffstat (limited to 'hl/test')
-rw-r--r--hl/test/test_ds.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hl/test/test_ds.c b/hl/test/test_ds.c
index d7af9e9..6c75423 100644
--- a/hl/test/test_ds.c
+++ b/hl/test/test_ds.c
@@ -4876,12 +4876,12 @@ static int read_data( const char* fname,
for(i=0, nelms=1; i < ndims; i++) {
if(fscanf( f, "%s %u", str, &j) && HDferror(f)) {
- printf( "fscanf error in file %s\n", data_file );
+ HDprintf( "fscanf error in file %s\n", data_file );
HDfclose(f);
return -1;
} /* end if */
if(fscanf( f, "%d",&n ) < 0 && HDferror(f)) {
- printf( "fscanf error in file %s\n", data_file );
+ HDprintf( "fscanf error in file %s\n", data_file );
HDfclose(f);
return -1;
} /* end if */
@@ -4899,7 +4899,7 @@ static int read_data( const char* fname,
for(j = 0; j < nelms; j++) {
if(fscanf( f, "%f",&val ) < 0 && HDferror(f)) {
- printf( "fscanf error in file %s\n", data_file );
+ HDprintf( "fscanf error in file %s\n", data_file );
HDfclose(f);
return -1;
} /* end if */