[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 "<".
This commit is contained in:
Albert Cheng 1998-08-11 18:45:03 -05:00
parent ed85f64ee7
commit 06d4abfb4d

View File

@ -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;