summaryrefslogtreecommitdiffstats
path: root/tools/misc/h5debug.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-07-03 04:24:25 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-07-03 04:24:25 (GMT)
commit441b2702341fe30c03ae7df6239a96b6dbcbfd55 (patch)
treeee0207d9493101f6040c6be97d0cb31cbf2ebd46 /tools/misc/h5debug.c
parent41220f091117888c29a80949cd32fb99e7d877ea (diff)
downloadhdf5-441b2702341fe30c03ae7df6239a96b6dbcbfd55.zip
hdf5-441b2702341fe30c03ae7df6239a96b6dbcbfd55.tar.gz
hdf5-441b2702341fe30c03ae7df6239a96b6dbcbfd55.tar.bz2
[svn-r17156] Description:
Hook fixed array data structure up to dataset code as a chunk index when there are 0 unlimited dimensions. Tested on: Mac OS X/32 10.5.7 (amazon) (h5committest not required on this branch)
Diffstat (limited to 'tools/misc/h5debug.c')
-rw-r--r--tools/misc/h5debug.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/misc/h5debug.c b/tools/misc/h5debug.c
index 9eabe5a..c79a5b6 100644
--- a/tools/misc/h5debug.c
+++ b/tools/misc/h5debug.c
@@ -192,6 +192,14 @@ get_H5FA_class(const uint8_t *sig)
cls = H5FA_CLS_TEST;
break;
+ case H5FA_CLS_CHUNK_ID:
+ cls = H5FA_CLS_CHUNK;
+ break;
+
+ case H5FA_CLS_FILT_CHUNK_ID:
+ cls = H5FA_CLS_FILT_CHUNK;
+ break;
+
default:
fprintf(stderr, "Unknown array class %u\n", (unsigned)(clsid));
HDexit(4);