summaryrefslogtreecommitdiffstats
path: root/tools/h5ls.c
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-06-04 17:59:20 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-06-04 17:59:20 (GMT)
commit2ce9e72bfbb73d4f3a56ac4f34b980ba7b17c5c7 (patch)
tree6b107b3bf21240dd9a20ab23541179cfaa73a756 /tools/h5ls.c
parentc1bcb2f3672eea12b5d3f1bfbe6e823773be1648 (diff)
downloadhdf5-2ce9e72bfbb73d4f3a56ac4f34b980ba7b17c5c7.zip
hdf5-2ce9e72bfbb73d4f3a56ac4f34b980ba7b17c5c7.tar.gz
hdf5-2ce9e72bfbb73d4f3a56ac4f34b980ba7b17c5c7.tar.bz2
[svn-r1301]
fixed the number of parameters to h5dump_fixtype.
Diffstat (limited to 'tools/h5ls.c')
-rw-r--r--tools/h5ls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5ls.c b/tools/h5ls.c
index e008510..0a361c3 100644
--- a/tools/h5ls.c
+++ b/tools/h5ls.c
@@ -1098,7 +1098,7 @@ list_attr (hid_t obj, const char *attr_name, void UNUSED *op_data)
info.line_pre = " %s \"";
info.line_suf = "\"";
}
- if ((p_type=h5dump_fixtype(type,FALSE))>=0) {
+ if ((p_type=h5dump_fixtype(type))>=0) {
need = nelmts * MAX(H5Tget_size(type), H5Tget_size(p_type));
buf = malloc(need);
assert(buf);