summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-06-24 16:03:24 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-06-24 16:03:24 (GMT)
commit8dabdf0ca6425920e4317115a17e2fd4e92ca93a (patch)
treed19c4ad387d968a452c3df9fe3ffaddf339ca5eb
parent847328994dd48345417e4cf6b45ed364cbc726bd (diff)
downloadhdf5-8dabdf0ca6425920e4317115a17e2fd4e92ca93a.zip
hdf5-8dabdf0ca6425920e4317115a17e2fd4e92ca93a.tar.gz
hdf5-8dabdf0ca6425920e4317115a17e2fd4e92ca93a.tar.bz2
[svn-r25353] fixes.
-rw-r--r--src/H5Pdcpl.c2
-rw-r--r--src/H5VLiod.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Pdcpl.c b/src/H5Pdcpl.c
index f5d4ce6..73a13a1 100644
--- a/src/H5Pdcpl.c
+++ b/src/H5Pdcpl.c
@@ -62,7 +62,7 @@
/* hints for Dataset storage layout */
#define H5D_CRT_DIMS_ORDER_SIZE sizeof(uint32_t)
-#define H5D_CRT_DIMS_ORDER_DEF H5D_ROW_MAJOR
+#define H5D_CRT_DIMS_ORDER_DEF 0
#define H5D_CRT_DIMS_ORDER_ENC H5P__encode_unsigned
#define H5D_CRT_DIMS_ORDER_DEC H5P__decode_unsigned
diff --git a/src/H5VLiod.h b/src/H5VLiod.h
index 19010cd..93842d2 100644
--- a/src/H5VLiod.h
+++ b/src/H5VLiod.h
@@ -51,7 +51,7 @@ extern "C" {
#define H5D_XFER_CHECKSUM_NAME "checksum"
#define H5D_XFER_CHECKSUM_PTR_NAME "checksum_ptr"
-#define H5D_CRT_DIMS_ORDER_NAME "dim_order"
+#define H5D_CRT_DIMS_ORDER_NAME "dims_order"
#define H5D_CRT_STRIPE_COUNT_NAME "stripe_count"
#define H5D_CRT_STRIPE_SIZE_NAME "stripe_size"
#define H5D_CRT_APPEND_ONLY_NAME "append_only"
@@ -109,8 +109,8 @@ H5_DLL herr_t H5Pget_dxpl_inject_corruption(hid_t dxpl_id, hbool_t *flag);
H5_DLL herr_t H5Pset_dcpl_append_only(hid_t dcpl_id, hbool_t flag);
H5_DLL herr_t H5Pget_dcpl_append_only(hid_t dcpl_id, hbool_t *flag);
-H5_DLL herr_t H5Pset_dcpl_dim_layout(hid_t dcpl_id, H5FF_dset_dim_layout_t layout);
-H5_DLL herr_t H5Pget_dcpl_dim_layout(hid_t dcpl_id, H5FF_dset_dim_layout_t *layout);
+H5_DLL herr_t H5Pset_dcpl_dim_layout(hid_t dcpl_id, H5FF_dset_dim_layout_t dims_layout);
+H5_DLL herr_t H5Pget_dcpl_dim_layout(hid_t dcpl_id, H5FF_dset_dim_layout_t *dims_layout);
H5_DLL herr_t H5Pset_dcpl_stripe_count(hid_t dcpl_id, size_t stripe_count);
H5_DLL herr_t H5Pget_dcpl_stripe_count(hid_t dcpl_id, size_t *stripe_count);
H5_DLL herr_t H5Pset_dcpl_stripe_size(hid_t dcpl_id, size_t stripe_size);