summaryrefslogtreecommitdiffstats
path: root/src/H5Tconv.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-11-11 15:56:43 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-11-11 15:56:43 (GMT)
commit47bef3253073160b2eddecf0fc7da00e142d7d52 (patch)
tree6c12d679540bb9e85d3c4dba1b027cea6407801a /src/H5Tconv.c
parentb20fa011c203a6d8f37fc22047263a5543b0f74d (diff)
downloadhdf5-47bef3253073160b2eddecf0fc7da00e142d7d52.zip
hdf5-47bef3253073160b2eddecf0fc7da00e142d7d52.tar.gz
hdf5-47bef3253073160b2eddecf0fc7da00e142d7d52.tar.bz2
[svn-r2865] Purpose:
Code Cleanup Description: Removed unused variable. Platforms tested: FreeBSD 4.1.1 (hawkwind)
Diffstat (limited to 'src/H5Tconv.c')
-rw-r--r--src/H5Tconv.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/H5Tconv.c b/src/H5Tconv.c
index 3489488..156f74f 100644
--- a/src/H5Tconv.c
+++ b/src/H5Tconv.c
@@ -1979,7 +1979,6 @@ H5T_conv_array(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, size_t nelmts,
size_t buf_stride, size_t UNUSED bkg_stride, void *_buf,
void UNUSED *_bkg, hid_t dset_xfer_plist)
{
- const H5D_xfer_t *xfer_parms = NULL;
H5T_path_t *tpath; /* Type conversion path */
hid_t tsrc_id = -1, tdst_id = -1;/*temporary type atoms */
H5T_t *src = NULL; /*source data type */
@@ -2046,14 +2045,6 @@ H5T_conv_array(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, size_t nelmts,
HRETURN_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a data type");
}
- /* Get the dataset transfer property list */
- if (H5P_DEFAULT == dset_xfer_plist) {
- xfer_parms = &H5D_xfer_dflt;
- } else if (H5P_DATA_XFER != H5P_get_class(dset_xfer_plist) ||
- NULL == (xfer_parms = H5I_object(dset_xfer_plist))) {
- HRETURN_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not xfer parms");
- }
-
/*
* Do we process the values from beginning to end or vice
* versa? Also, how many of the elements have the source and