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/H5Dchunk.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/H5Dchunk.c')
-rw-r--r-- | src/H5Dchunk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c index af6599a..0d7fcc9 100644 --- a/src/H5Dchunk.c +++ b/src/H5Dchunk.c @@ -5720,7 +5720,7 @@ H5D__chunk_copy_cb(const H5D_chunk_rec_t *chunk_rec, void *_udata) H5D_rdcc_ent_t *ent = NULL; /* Cache entry */ unsigned idx; /* Index of chunk in cache, if present */ unsigned u; /* Counter */ - H5D_shared_t *shared_fo = udata->cpy_info->shared_fo; + H5D_shared_t *shared_fo = (H5D_shared_t *)udata->cpy_info->shared_fo; /* See if the written chunk is in the chunk cache */ if(shared_fo && shared_fo->cache.chunk.nslots > 0) { |