diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-08-26 14:21:45 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-08-26 14:21:45 (GMT) |
commit | 833839621aac2e39c553b13672b869ba868035f7 (patch) | |
tree | 129ca8817f37364c48a202087158da6a0ad5cf3f /tools/h5ls.c | |
parent | 9b934aa767e8c177a0ac84cc808dec9ac49135ae (diff) | |
download | hdf5-833839621aac2e39c553b13672b869ba868035f7.zip hdf5-833839621aac2e39c553b13672b869ba868035f7.tar.gz hdf5-833839621aac2e39c553b13672b869ba868035f7.tar.bz2 |
[svn-r1602] Changes since 19990825
----------------------
./src/H5O.c [1.2, 1.3]
Initialzed the padding area between the end of a message and
the end of the space allocated for that message. This
hopefully fixes an UMR error found by Quincey and prevents the
file from containing unwanted data.
./tools/h5ls.c [1.2, 1.3]
Fixed a bug where the `Data:' tag didn't get printed for
attributes that have more than five values.
Diffstat (limited to 'tools/h5ls.c')
-rw-r--r-- | tools/h5ls.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/h5ls.c b/tools/h5ls.c index bf5e7eb..d245cc5 100644 --- a/tools/h5ls.c +++ b/tools/h5ls.c @@ -1213,6 +1213,7 @@ list_attr (hid_t obj, const char *attr_name, void UNUSED *op_data) info.line_cont = " "; } else { + printf(" Data:\n"); info.idx_fmt = "(%s)"; info.line_pre = " %s "; info.line_cont = " %s "; |