diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-11-10 04:04:12 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-11-10 04:04:12 (GMT) |
commit | 0b846cee58af147e92a3ba7db45497fd9eaa09b4 (patch) | |
tree | 98486856888d5204e4c1ac10cc96f859ba04437e /src/H5Dcontig.c | |
parent | fb5c4f68fc6d9eb8c10ccd67bb0e758574ae0163 (diff) | |
download | hdf5-0b846cee58af147e92a3ba7db45497fd9eaa09b4.zip hdf5-0b846cee58af147e92a3ba7db45497fd9eaa09b4.tar.gz hdf5-0b846cee58af147e92a3ba7db45497fd9eaa09b4.tar.bz2 |
Cleaned up misc warnings in src and test.
Diffstat (limited to 'src/H5Dcontig.c')
-rw-r--r-- | src/H5Dcontig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dcontig.c b/src/H5Dcontig.c index 86de017..aab4901 100644 --- a/src/H5Dcontig.c +++ b/src/H5Dcontig.c @@ -1363,7 +1363,7 @@ H5D__contig_copy(H5F_t *f_src, const H5O_storage_contig_t *storage_src, hsize_t buf_dim[1] = {0}; /* Dimension for buffer */ hbool_t is_vlen = FALSE; /* Flag to indicate that VL type conversion should occur */ hbool_t fix_ref = FALSE; /* Flag to indicate that ref values should be fixed */ - H5D_shared_t *shared_fo = cpy_info->shared_fo; /* Pointer to the shared struct for dataset object */ + H5D_shared_t *shared_fo = (H5D_shared_t *)cpy_info->shared_fo; /* Pointer to the shared struct for dataset object */ hbool_t try_sieve = FALSE; /* Try to get data from the sieve buffer */ haddr_t sieve_start = HADDR_UNDEF; /* Start location of sieve buffer */ haddr_t sieve_end = HADDR_UNDEF; /* End locations of sieve buffer */ |