diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2015-03-30 15:12:49 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2015-03-30 15:12:49 (GMT) |
commit | 01093ad350365e1a29f1726c4ff8c72f1d4d739a (patch) | |
tree | 3bbf175988e76609bb804b0099207a041465b92c /src/H5Gdeprec.c | |
parent | bf7c3fb6708a2f77bd333b20a5167b9eead392a9 (diff) | |
download | hdf5-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.c | 2 |
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 */ |