summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-11-18 15:17:37 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-11-18 15:17:37 (GMT)
commitc865c80878d66aef2037a32b9c31e58905838535 (patch)
treeb0f02944e687f3eb0a84cc122970231c94471f51 /tools
parent66e8514270974f13bedffdf985c044370ab8552b (diff)
downloadhdf5-c865c80878d66aef2037a32b9c31e58905838535.zip
hdf5-c865c80878d66aef2037a32b9c31e58905838535.tar.gz
hdf5-c865c80878d66aef2037a32b9c31e58905838535.tar.bz2
[svn-r1839] added support for displaying nested compound data.
Diffstat (limited to 'tools')
-rw-r--r--tools/h5tools.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/h5tools.c b/tools/h5tools.c
index 78aec60..4c0cd20 100644
--- a/tools/h5tools.c
+++ b/tools/h5tools.c
@@ -2222,7 +2222,11 @@ int nmembs, i, j, k, ndims, perm[4];
case H5T_OPAQUE:
break;
-
+ case H5T_COMPOUND:
+ printf("\n");
+ display_compound_data (nelmts, memb, sm_buf+offset+i*p_type_nbytes, size, nelmts, 0);
+ indentation(indent);
+ break;
default: break;
}