summaryrefslogtreecommitdiffstats
path: root/src/H5Dint.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 /src/H5Dint.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 'src/H5Dint.c')
-rw-r--r--src/H5Dint.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c
index 001b48a..1fddd01 100644
--- a/src/H5Dint.c
+++ b/src/H5Dint.c
@@ -735,6 +735,10 @@ H5D_set_io_ops(H5D_t *dataset)
dataset->shared->layout.u.chunk.ops = H5D_COPS_EARRAY;
break;
+ case H5D_CHUNK_IDX_FARRAY:
+ dataset->shared->layout.u.chunk.ops = H5D_COPS_FARRAY;
+ break;
+
default:
HDassert(0 && "Unknown chunk index method!");
HGOTO_ERROR(H5E_DATASET, H5E_UNSUPPORTED, FAIL, "unknown chunk index method")