diff options
Diffstat (limited to 'test/istore.c')
-rw-r--r-- | test/istore.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/istore.c b/test/istore.c index d9bea45..e79754a 100644 --- a/test/istore.c +++ b/test/istore.c @@ -116,7 +116,8 @@ new_object(H5F_t *f, const char *name, unsigned ndims, H5G_entry_t *ent/*out*/) layout.dim[u] = 2; } } - H5F_arr_create(f, &layout/*in,out*/); + /* Create the root of the B-tree that describes chunked storage */ + H5F_istore_create (f, &layout/*in,out*/); if (H5O_modify(ent, H5O_LAYOUT, H5O_NEW_MESG, 0, &layout) < 0) { H5_FAILED(); puts(" H5O_modify istore message failure."); |