summaryrefslogtreecommitdiffstats
path: root/src/H5T.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5T.c')
-rw-r--r--src/H5T.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/H5T.c b/src/H5T.c
index 3f24960..9690176 100644
--- a/src/H5T.c
+++ b/src/H5T.c
@@ -595,14 +595,19 @@ H5T_term_interface(void)
H5T_get_size (path->dst));
nbytes *= path->cdata.stats->nelmts;
HDfprintf (stderr,
- " %-*s %8Hd/%-5d %8.2f %8.2f %8.2f %15g\n",
+ " %-*s %8Hd/%-5d %8.2f %8.2f %8.2f",
H5T_NAMELEN-1, path->name,
path->cdata.stats->nelmts,
path->cdata.stats->ncalls,
path->cdata.stats->timer.utime,
path->cdata.stats->timer.stime,
- path->cdata.stats->timer.etime,
- nbytes / path->cdata.stats->timer.etime);
+ path->cdata.stats->timer.etime);
+ if (path->cdata.stats->timer.etime>0) {
+ HDfprintf (stderr, " %15g\n",
+ nbytes / path->cdata.stats->timer.etime);
+ } else {
+ HDfprintf (stderr, " %15s\n", "Inf");
+ }
}
#endif
H5T_close (path->src);