summaryrefslogtreecommitdiffstats
path: root/src/H5HFhdr.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-11-07 20:19:41 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-11-07 20:19:41 (GMT)
commite87cb9148356b581d8ff8a910ea3acc9d549ee7a (patch)
treeb4a8910040dccd553a23fe831b4f5f1e1798071e /src/H5HFhdr.c
parent53357538de48331d44345e8b91020c84fc144e9c (diff)
downloadhdf5-e87cb9148356b581d8ff8a910ea3acc9d549ee7a.zip
hdf5-e87cb9148356b581d8ff8a910ea3acc9d549ee7a.tar.gz
hdf5-e87cb9148356b581d8ff8a910ea3acc9d549ee7a.tar.bz2
[svn-r12877] Description:
Clean up more compiler warnings. Tested on: Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5HFhdr.c')
-rw-r--r--src/H5HFhdr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5HFhdr.c b/src/H5HFhdr.c
index adc1859..a02e8ed 100644
--- a/src/H5HFhdr.c
+++ b/src/H5HFhdr.c
@@ -262,7 +262,7 @@ H5HF_hdr_finish_init_phase2(H5HF_hdr_t *hdr)
if(u < hdr->man_dtable.max_direct_rows) {
hdr->man_dtable.row_tot_dblock_free[u] = hdr->man_dtable.row_block_size[u] -
H5HF_MAN_ABS_DIRECT_OVERHEAD(hdr);
- hdr->man_dtable.row_max_dblock_free[u] = hdr->man_dtable.row_tot_dblock_free[u];
+ H5_ASSIGN_OVERFLOW(/* To: */ hdr->man_dtable.row_max_dblock_free[u], /* From: */ hdr->man_dtable.row_tot_dblock_free[u], /* From: */ hsize_t, /* To: */ size_t);
} /* end if */
else
if(H5HF_hdr_compute_free_space(hdr, u) < 0)