diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-04-02 13:59:10 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-04-02 13:59:10 (GMT) |
commit | 5e319027652b1187c509953f0f9bb80269244c51 (patch) | |
tree | e3d34f6995907a603a9b99363b1b26b73af8cf03 /src/H5.c | |
parent | ddb367a33552e0d5ace738330322cae567b26783 (diff) | |
download | hdf5-5e319027652b1187c509953f0f9bb80269244c51.zip hdf5-5e319027652b1187c509953f0f9bb80269244c51.tar.gz hdf5-5e319027652b1187c509953f0f9bb80269244c51.tar.bz2 |
[svn-r1171] Changes since 19990330
----------------------
./src/H5A.c
./src/H5D.c
The `bkg' buffers are zeroed before calling the type
conversion function. This fixes a problem where reading a file
compound data structure into memory results in garbage between
the members.
./src/H5I.c
Fixed H5I_clear_group() so it removes entries even when a free
callback is not registered. This fixes fixes an `infinite loop
closing library' warning message.
./src/H5.c
Added ellipses to the end of the infinite loop message.
Diffstat (limited to 'src/H5.c')
-rw-r--r-- | src/H5.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -167,7 +167,7 @@ H5_term_library(void) } while (pending && ntries++<100); if (pending) { fprintf(stderr, "HDF5: infinite loop closing library\n"); - fprintf(stderr, " %s\n", loop); + fprintf(stderr, " %s...\n", loop); } /* Mark library as closed */ |