summaryrefslogtreecommitdiffstats
path: root/src/H5trace.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2020-03-23 23:01:43 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2020-03-23 23:01:43 (GMT)
commitd3ef866a2963ce93d0b95184534a70849b6fa11d (patch)
treee51402f70e86e741c869710ecb9785ebcb0ad52a /src/H5trace.c
parente916acd018d5a307e7690a7978a1b73e83508f2b (diff)
parentb51585a9110c4322c52f9dcdc60cd26c3ea44546 (diff)
downloadhdf5-d3ef866a2963ce93d0b95184534a70849b6fa11d.zip
hdf5-d3ef866a2963ce93d0b95184534a70849b6fa11d.tar.gz
hdf5-d3ef866a2963ce93d0b95184534a70849b6fa11d.tar.bz2
Merge pull request #2445 in HDFFV/hdf5 from alloc_stats to develop
* commit 'b51585a9110c4322c52f9dcdc60cd26c3ea44546': Revise API for H5get_alloc_stats() to take a struct instead of separate values. Add routines to query the library's free list sizes and allocation stats.
Diffstat (limited to 'src/H5trace.c')
-rw-r--r--src/H5trace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5trace.c b/src/H5trace.c
index 7168d5d..03d9e7c 100644
--- a/src/H5trace.c
+++ b/src/H5trace.c
@@ -155,7 +155,7 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
} /* end if */
/* Get time for event */
- if(H5_DBL_ABS_EQUAL(first_time.etime, 0.0))
+ if(H5_DBL_ABS_EQUAL(first_time.etime, (double)0.0f))
H5_timer_begin(&first_time);
if(H5_debug_g.ttimes)
H5_timer_begin(&event_time);