diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-27 23:10:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-27 23:10:02 (GMT) |
commit | 2516911cad1e5f26aa92a6b153909b32a3645ac0 (patch) | |
tree | b3003be2ba4d683bad5f54cc504c2b4832bdbebf /src/H5Ocopy.c | |
parent | 03c994ee5921d46c7332b494844e55432f7bde31 (diff) | |
download | hdf5-2516911cad1e5f26aa92a6b153909b32a3645ac0.zip hdf5-2516911cad1e5f26aa92a6b153909b32a3645ac0.tar.gz hdf5-2516911cad1e5f26aa92a6b153909b32a3645ac0.tar.bz2 |
[svn-r12988] Description:
General cleanups, in preparation for adding some attribute-tracking fields
to the object header prefix.
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Ocopy.c')
-rw-r--r-- | src/H5Ocopy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Ocopy.c b/src/H5Ocopy.c index ea8f1c6..44baa9e 100644 --- a/src/H5Ocopy.c +++ b/src/H5Ocopy.c @@ -633,8 +633,8 @@ H5O_copy_header_real(const H5O_loc_t *oloc_src, H5O_loc_t *oloc_dst /*out */, /* Increment object header's reference count, if any descendents have created links to link to this object */ if(addr_map->inc_ref_count) { - H5_CHECK_OVERFLOW(addr_map->inc_ref_count, hsize_t, int); - oh_dst->nlink += (int)addr_map->inc_ref_count; + H5_CHECK_OVERFLOW(addr_map->inc_ref_count, hsize_t, unsigned); + oh_dst->nlink += (unsigned)addr_map->inc_ref_count; } /* end if */ /* Insert destination object header in cache */ |