From e23aeea0ef68fe705faacef603b9568513997ef2 Mon Sep 17 00:00:00 2001 From: Andreas Adelmann Date: Thu, 11 Aug 2011 11:24:26 +0000 Subject: [PATCH] remove dbg output --- src/h5core/h5t_adjacencies_trim.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/h5core/h5t_adjacencies_trim.c b/src/h5core/h5t_adjacencies_trim.c index 1ddca97..4fe206a 100644 --- a/src/h5core/h5t_adjacencies_trim.c +++ b/src/h5core/h5t_adjacencies_trim.c @@ -582,13 +582,13 @@ update_internal_structs ( clock_t t1 = clock(); TRY( compute_elems_of_vertices (f, from_lvl) ); clock_t t2 = clock(); - fprintf (stderr, "compute_elems_of_vertices(): %f\n", - (float)(t2-t1)/CLOCKS_PER_SEC); + // fprintf (stderr, "compute_elems_of_vertices(): %f\n", + // (float)(t2-t1)/CLOCKS_PER_SEC); t1 = clock(); TRY( compute_elems_of_edges (f, from_lvl ) ); t2 = clock(); - fprintf (stderr, "compute_elems_of_edge(): %f\n", - (float)(t2-t1)/CLOCKS_PER_SEC); + // fprintf (stderr, "compute_elems_of_edge(): %f\n", + // (float)(t2-t1)/CLOCKS_PER_SEC); h5_debug ("%s (%lld): done", __func__, (long long)from_lvl); H5_PRIV_FUNC_RETURN (H5_SUCCESS); }