summaryrefslogtreecommitdiffstats
path: root/src/H5Z.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1998-08-11 23:45:03 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1998-08-11 23:45:03 (GMT)
commit06d4abfb4def640e1b3638d4414518ea0c348734 (patch)
tree5d70bb765f00a2fc7c8366f08bc8655af129584d /src/H5Z.c
parented85f64ee75de74373423f2848bc81c19b783db9 (diff)
downloadhdf5-06d4abfb4def640e1b3638d4414518ea0c348734.zip
hdf5-06d4abfb4def640e1b3638d4414518ea0c348734.tar.gz
hdf5-06d4abfb4def640e1b3638d4414518ea0c348734.tar.bz2
[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 "<".
Diffstat (limited to 'src/H5Z.c')
-rw-r--r--src/H5Z.c2
1 files changed, 1 insertions, 1 deletions
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<H5Z_table_used_g; i++) {
for (dir=0; dir<2; dir++) {
if (0==H5Z_table_g[i].stats[dir].total) continue;