diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-01-07 03:51:07 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-01-07 03:51:07 (GMT) |
commit | 7fc6a486b94dcd8eff19db8816d9ab3b0bbeb440 (patch) | |
tree | bb1374a8a5b0a03b36230e9a636e4e2bd1fa21ed /src/H5HFhuge.c | |
parent | 327ea3a76678ed2f92b0eb72df36c1d02651c2be (diff) | |
download | hdf5-7fc6a486b94dcd8eff19db8816d9ab3b0bbeb440.zip hdf5-7fc6a486b94dcd8eff19db8816d9ab3b0bbeb440.tar.gz hdf5-7fc6a486b94dcd8eff19db8816d9ab3b0bbeb440.tar.bz2 |
[svn-r13117] Description:
Clean up some warnings from Windows.
Tested on:
FreeBSD/32 6.1 (duty)
Diffstat (limited to 'src/H5HFhuge.c')
-rw-r--r-- | src/H5HFhuge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5HFhuge.c b/src/H5HFhuge.c index e2663cd..4a4d2c3 100644 --- a/src/H5HFhuge.c +++ b/src/H5HFhuge.c @@ -632,7 +632,7 @@ H5HF_huge_op_real(H5HF_hdr_t *hdr, hid_t dxpl_id, const uint8_t *id, /* Retrieve the object's address & length */ obj_addr = found_rec.addr; - obj_size = found_rec.len; + H5_ASSIGN_OVERFLOW(/* To: */ obj_size, /* From: */ found_rec.len, /* From: */ hsize_t, /* To: */ size_t); filter_mask = found_rec.filter_mask; } /* end if */ else { @@ -649,7 +649,7 @@ H5HF_huge_op_real(H5HF_hdr_t *hdr, hid_t dxpl_id, const uint8_t *id, /* Retrieve the object's address & length */ obj_addr = found_rec.addr; - obj_size = found_rec.len; + H5_ASSIGN_OVERFLOW(/* To: */ obj_size, /* From: */ found_rec.len, /* From: */ hsize_t, /* To: */ size_t); } /* end else */ } /* end else */ |