summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-03-11 03:43:10 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-03-11 03:43:10 (GMT)
commit331e8bf9ae2bb7d2bf0b42baf01448c8d8d5fffd (patch)
tree50b892f31e70f8da2caf7f63fd724b1ec261efe5 /src
parent45a16682e29fdb5d7bf071ebb6d52cca157e1718 (diff)
downloadhdf5-331e8bf9ae2bb7d2bf0b42baf01448c8d8d5fffd.zip
hdf5-331e8bf9ae2bb7d2bf0b42baf01448c8d8d5fffd.tar.gz
hdf5-331e8bf9ae2bb7d2bf0b42baf01448c8d8d5fffd.tar.bz2
[svn-r10188] Purpose:
Bug fix Description: Correct the native record size. Platforms tested: FreeBSD 4.11 (sleipnir) Solaris 2.9 (shanti)
Diffstat (limited to 'src')
-rw-r--r--src/H5BTbtree2.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/H5BTbtree2.c b/src/H5BTbtree2.c
index 4c37004..5539b03 100644
--- a/src/H5BTbtree2.c
+++ b/src/H5BTbtree2.c
@@ -38,14 +38,14 @@ static herr_t H5BT_debug(FILE *stream, const H5F_t *f, hid_t dxpl_id,
/* Package variables */
const H5B2_class_t H5B2_BLKTRK[1]={{ /* B-tree class information */
- H5B2_BLK_TRK_ID, /* Type of B-tree */
- sizeof(hsize_t), /* Size of native key */
- H5BT_store, /* Record storage callback */
- H5BT_retrieve, /* Record retrieval callback */
- H5BT_compare, /* Record comparison callback */
- H5BT_encode, /* Record encoding callback */
- H5BT_decode, /* Record decoding callback */
- H5BT_debug /* Record debugging callback */
+ H5B2_BLK_TRK_ID, /* Type of B-tree */
+ sizeof(H5BT_blk_info_t), /* Size of native key */
+ H5BT_store, /* Record storage callback */
+ H5BT_retrieve, /* Record retrieval callback */
+ H5BT_compare, /* Record comparison callback */
+ H5BT_encode, /* Record encoding callback */
+ H5BT_decode, /* Record decoding callback */
+ H5BT_debug /* Record debugging callback */
}};
@@ -70,7 +70,7 @@ H5BT_store(void *nrecord, const void *udata)
{
FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5BT_store)
- *(H5BT_blk_info_t *)nrecord=*(const H5BT_blk_info_t *)udata;
+ *(H5BT_blk_info_t *)nrecord = *(const H5BT_blk_info_t *)udata;
FUNC_LEAVE_NOAPI(SUCCEED);
} /* H5BT_store() */
@@ -97,7 +97,7 @@ H5BT_retrieve(void *udata, const void *nrecord)
{
FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5BT_retrieve)
- *(H5BT_blk_info_t *)udata=*(const H5BT_blk_info_t *)nrecord;
+ *(H5BT_blk_info_t *)udata = *(const H5BT_blk_info_t *)nrecord;
FUNC_LEAVE_NOAPI(SUCCEED);
} /* H5BT_retrieve() */