diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-03-11 22:51:14 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-03-11 22:51:14 (GMT) |
commit | 7659506fa895d00ddaeba68603689e51ca263fb3 (patch) | |
tree | da50a04e4e87cc723c9eb1a0b303483526b889aa /test/th5s.c | |
parent | 88ac8e8929f6fd99732a1e08ced4ea82bfb230f1 (diff) | |
download | hdf5-7659506fa895d00ddaeba68603689e51ca263fb3.zip hdf5-7659506fa895d00ddaeba68603689e51ca263fb3.tar.gz hdf5-7659506fa895d00ddaeba68603689e51ca263fb3.tar.bz2 |
[svn-r26438] Fixed some double promotion warnings from gcc 4.9.2. Most were in
format strings.
Tested on: h5committest
Diffstat (limited to 'test/th5s.c')
-rw-r--r-- | test/th5s.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/th5s.c b/test/th5s.c index 94268a7..9d51ec8 100644 --- a/test/th5s.c +++ b/test/th5s.c @@ -1581,7 +1581,7 @@ test_h5s_compound_scalar_read(void) if(HDmemcmp(&space4_data,&rdata,sizeof(struct space4_struct))) { printf("scalar data different: space4_data.c1=%c, read_data4.c1=%c\n",space4_data.c1,rdata.c1); printf("scalar data different: space4_data.u=%u, read_data4.u=%u\n",space4_data.u,rdata.u); - printf("scalar data different: space4_data.f=%f, read_data4.f=%f\n",space4_data.f,rdata.f); + printf("scalar data different: space4_data.f=%f, read_data4.f=%f\n",(double)space4_data.f,(double)rdata.f); TestErrPrintf("scalar data different: space4_data.c1=%c, read_data4.c1=%c\n",space4_data.c1,rdata.c2); } /* end if */ @@ -1684,7 +1684,7 @@ test_h5s_chunk(void) for(j=0; j<3; j++) { /* Check if the two values are within 0.001% range. */ if(!DBL_REL_EQUAL(chunk_data_dbl[i][j], chunk_data_flt[i][j], 0.00001F)) - TestErrPrintf("%u: chunk_data_dbl[%d][%d]=%e, chunk_data_flt[%d][%d]=%e\n", (unsigned)__LINE__, i, j, chunk_data_dbl[i][j], i, j, chunk_data_flt[i][j]); + TestErrPrintf("%u: chunk_data_dbl[%d][%d]=%e, chunk_data_flt[%d][%d]=%e\n", (unsigned)__LINE__, i, j, chunk_data_dbl[i][j], i, j, (double)chunk_data_flt[i][j]); } /* end for */ } /* end for */ } /* test_h5s_chunk() */ |