diff options
author | Jerome Soumagne <jsoumagne@hdfgroup.org> | 2014-08-05 20:10:50 (GMT) |
---|---|---|
committer | Jerome Soumagne <jsoumagne@hdfgroup.org> | 2016-11-29 23:42:29 (GMT) |
commit | 1aa3cdcb500a0dcf8ee264537d86b4c243572b37 (patch) | |
tree | 8b0755d521a425481396f48e86b333fdb6dcb07c /src | |
parent | e860d4eab60283b07c49efcd717348d3c0add65a (diff) | |
download | hdf5-1aa3cdcb500a0dcf8ee264537d86b4c243572b37.zip hdf5-1aa3cdcb500a0dcf8ee264537d86b4c243572b37.tar.gz hdf5-1aa3cdcb500a0dcf8ee264537d86b4c243572b37.tar.bz2 |
Fix typos in FastBit plugin
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Xfastbit.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Xfastbit.c b/src/H5Xfastbit.c index c86c540..bea5145 100644 --- a/src/H5Xfastbit.c +++ b/src/H5Xfastbit.c @@ -13,7 +13,7 @@ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* - * Purpose: Alacrity index routines. + * Purpose: FastBit index routines. */ /****************/ @@ -182,7 +182,7 @@ H5X_fastbit_refresh(void *idx_handle, size_t *metadata_size, void **metadata); /* Local Variables */ /*******************/ -/* Alacrity index class */ +/* FastBit index class */ const H5X_class_t H5X_FASTBIT[1] = {{ H5X_CLASS_T_VERS, /* (From the H5Xpublic.h header file) */ H5X_PLUGIN_FASTBIT, /* (Or whatever number is assigned) */ @@ -265,7 +265,7 @@ H5X__fastbit_init(hid_t file_id, hid_t dataset_id) /* Create an opaque type to handle FastBit data */ if (FAIL == (fastbit->opaque_type_id = H5Tcreate(H5T_OPAQUE, 1))) HGOTO_ERROR(H5E_DATATYPE, H5E_CANTCREATE, NULL, "can't create type"); - if (FAIL == H5Tset_tag(fastbit->opaque_type_id, "alacrity metadata type")) + if (FAIL == H5Tset_tag(fastbit->opaque_type_id, "FastBit metadata type")) HGOTO_ERROR(H5E_DATATYPE, H5E_CANTSET, NULL, "can't set tag to type"); ret_value = fastbit; @@ -701,7 +701,7 @@ static herr_t H5X__fastbit_serialize_metadata(H5X_fastbit_t *fastbit, void *buf, size_t *buf_size) { - size_t alacrity_metadata_size = 3 * sizeof(haddr_t); + size_t metadata_size = 3 * sizeof(haddr_t); herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI_NOINIT @@ -729,7 +729,7 @@ H5X__fastbit_serialize_metadata(H5X_fastbit_t *fastbit, void *buf, buf_ptr += sizeof(haddr_t); } - if (buf_size) *buf_size = alacrity_metadata_size; + if (buf_size) *buf_size = metadata_size; done: FUNC_LEAVE_NOAPI(ret_value) |