From 06d4abfb4def640e1b3638d4414518ea0c348734 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Tue, 11 Aug 1998 18:45:03 -0500 Subject: [svn-r586] The for loop in debugging statistics of H5Z_term_interface had a typo, causing the debugging to try dump H5Z_table beyond what is being used. Changed "<=" to "<". --- src/H5Z.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5Z.c b/src/H5Z.c index e415790..e2059ee 100644 --- a/src/H5Z.c +++ b/src/H5Z.c @@ -86,7 +86,7 @@ H5Z_term_interface (void) int dir, nprint=0; char comment[16], bandwidth[32]; - for (i=0; i<=H5Z_table_used_g; i++) { + for (i=0; i