diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-11-18 15:17:37 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-11-18 15:17:37 (GMT) |
commit | c865c80878d66aef2037a32b9c31e58905838535 (patch) | |
tree | b0f02944e687f3eb0a84cc122970231c94471f51 | |
parent | 66e8514270974f13bedffdf985c044370ab8552b (diff) | |
download | hdf5-c865c80878d66aef2037a32b9c31e58905838535.zip hdf5-c865c80878d66aef2037a32b9c31e58905838535.tar.gz hdf5-c865c80878d66aef2037a32b9c31e58905838535.tar.bz2 |
[svn-r1839] added support for displaying nested compound data.
-rw-r--r-- | tools/h5tools.c | 6 |
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; } |