summaryrefslogtreecommitdiffstats
path: root/src/H5Gdeprec.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2015-03-30 15:12:49 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2015-03-30 15:12:49 (GMT)
commit01093ad350365e1a29f1726c4ff8c72f1d4d739a (patch)
tree3bbf175988e76609bb804b0099207a041465b92c /src/H5Gdeprec.c
parentbf7c3fb6708a2f77bd333b20a5167b9eead392a9 (diff)
downloadhdf5-01093ad350365e1a29f1726c4ff8c72f1d4d739a.zip
hdf5-01093ad350365e1a29f1726c4ff8c72f1d4d739a.tar.gz
hdf5-01093ad350365e1a29f1726c4ff8c72f1d4d739a.tar.bz2
[svn-r26649] squish warnings.
Diffstat (limited to 'src/H5Gdeprec.c')
-rw-r--r--src/H5Gdeprec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gdeprec.c b/src/H5Gdeprec.c
index 17920ab..6433544 100644
--- a/src/H5Gdeprec.c
+++ b/src/H5Gdeprec.c
@@ -261,7 +261,7 @@ H5Gcreate1(hid_t loc_id, const char *name, size_t size_hint)
HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get group info")
/* Set the non-default local heap size hint */
- ginfo.lheap_size_hint = size_hint;
+ H5_ASSIGN_OVERFLOW(ginfo.lheap_size_hint, size_hint, size_t, uint32_t);
if(H5P_set(gc_plist, H5G_CRT_GROUP_INFO_NAME, &ginfo) < 0)
HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "can't set group info")
} /* end if */