diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-08-11 23:45:03 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-08-11 23:45:03 (GMT) |
commit | 06d4abfb4def640e1b3638d4414518ea0c348734 (patch) | |
tree | 5d70bb765f00a2fc7c8366f08bc8655af129584d /src/H5Z.c | |
parent | ed85f64ee75de74373423f2848bc81c19b783db9 (diff) | |
download | hdf5-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |