diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-06-15 16:07:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-06-15 16:07:38 (GMT) |
commit | adbb64c6cd100915dfd62235c10d48a3b4162bd9 (patch) | |
tree | 8f6263c8606c8db3a982522d43b62b2cbc050881 /test/th5s.c | |
parent | b5a6740703d3dcc6f2c56c9e950507390be99a2c (diff) | |
download | hdf5-adbb64c6cd100915dfd62235c10d48a3b4162bd9.zip hdf5-adbb64c6cd100915dfd62235c10d48a3b4162bd9.tar.gz hdf5-adbb64c6cd100915dfd62235c10d48a3b4162bd9.tar.bz2 |
[svn-r27204] Description:
Clean up compiler warnings before merging in v3 metadata cache changes
from branch.
Tested on:
MacOSX/64 10.10.3 (amazon) w/serial & parallel
Linux/32 2.6.x (jam) w/serial & parallel
Diffstat (limited to 'test/th5s.c')
-rw-r--r-- | test/th5s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/th5s.c b/test/th5s.c index 7c1c46e..1560ef4 100644 --- a/test/th5s.c +++ b/test/th5s.c @@ -1683,7 +1683,7 @@ test_h5s_chunk(void) for(i=0; i<50000; i++) { 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)) + if(!H5_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, (double)chunk_data_flt[i][j]); } /* end for */ } /* end for */ |