diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-05-31 16:08:10 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-05-31 16:08:10 (GMT) |
commit | 7f5c264ce487bf308b762e18e77c5c63ec43adb9 (patch) | |
tree | e0006916c42c9d6063fd5e9a3a4595fb3f4eb0af | |
parent | 2d7cee1e9f73380126430fd084442c7935615631 (diff) | |
download | hdf5-7f5c264ce487bf308b762e18e77c5c63ec43adb9.zip hdf5-7f5c264ce487bf308b762e18e77c5c63ec43adb9.tar.gz hdf5-7f5c264ce487bf308b762e18e77c5c63ec43adb9.tar.bz2 |
[svn-r2305] took out the line that said the bitfields are not supported in the dumper.
now it will dump bitfields using the the tools lib like h5ls does.
-rw-r--r-- | tools/h5dump.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/h5dump.c b/tools/h5dump.c index 9934c10..b6cd255 100644 --- a/tools/h5dump.c +++ b/tools/h5dump.c @@ -1117,10 +1117,7 @@ hid_t type, space; dump_data(did, DATASET_DATA); break; case H5T_BITFIELD: - indent += COL; - indentation (indent); - indent -= COL; - printf("DATA{ not yet implemented.}\n"); + dump_data(did, DATASET_DATA); break; case H5T_OPAQUE: /* indent += COL; |