summaryrefslogtreecommitdiffstats
path: root/src/H5P.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1999-10-07 16:51:49 (GMT)
committerRobb Matzke <matzke@llnl.gov>1999-10-07 16:51:49 (GMT)
commit20e748496e281cf068227fed2bcbe0aeca09bd7b (patch)
tree2dea5d5d3e18311329f61f03b69ca9e9a654950c /src/H5P.c
parent766d480daf98b8d0aad9e767202fbe21ad101c48 (diff)
downloadhdf5-20e748496e281cf068227fed2bcbe0aeca09bd7b.zip
hdf5-20e748496e281cf068227fed2bcbe0aeca09bd7b.tar.gz
hdf5-20e748496e281cf068227fed2bcbe0aeca09bd7b.tar.bz2
[svn-r1732] Changes since 19991007
---------------------- ./src/H5FDcore.c Includes private headers instead of public in order to use the `UNUSED' macro. ./src/H5FDpublic.h Includes H5public.h just in case. ./src/H5P.c Removed two unused variables in H5P_copy() ./src/H5FDgass.h Fixed a C++ comment after a `#endif' ./src/Makefile.in The H5FDgass.h file is public and must be installed in order for applications to be able to use HDF5. ./tools/h5tools.c Removed an unused variable.
Diffstat (limited to 'src/H5P.c')
-rw-r--r--src/H5P.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/H5P.c b/src/H5P.c
index 8c8df9f..de523ce 100644
--- a/src/H5P.c
+++ b/src/H5P.c
@@ -2607,9 +2607,7 @@ H5P_copy (H5P_class_t type, const void *src)
void *dst = NULL;
const H5D_create_t *dc_src = NULL;
H5D_create_t *dc_dst = NULL;
- const H5F_access_t *fa_src = NULL;
H5F_access_t *fa_dst = NULL;
- const H5F_xfer_t *dx_src = NULL;
H5F_xfer_t *dx_dst = NULL;
FUNC_ENTER (H5P_copy, NULL);
@@ -2654,7 +2652,6 @@ H5P_copy (H5P_class_t type, const void *src)
break;
case H5P_FILE_ACCESS:
- fa_src = (const H5F_access_t*)src;
fa_dst = (H5F_access_t*)dst;
if (fa_dst->driver_id>=0) {
@@ -2691,7 +2688,6 @@ H5P_copy (H5P_class_t type, const void *src)
break;
case H5P_DATA_XFER:
- dx_src = (const H5F_xfer_t*)src;
dx_dst = (H5F_xfer_t*)dst;
if (dx_dst->driver_id>=0) {