diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-04-02 18:08:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-04-02 18:08:05 (GMT) |
commit | 6fddc705d6b0c51f00bb7fb9a6086f3a4574e161 (patch) | |
tree | c2b4ed41ad256280699103c22bfcc774be0b8e6e | |
parent | 5d4294042e459b998d642c33d6233a6912f67c77 (diff) | |
download | hdf5-6fddc705d6b0c51f00bb7fb9a6086f3a4574e161.zip hdf5-6fddc705d6b0c51f00bb7fb9a6086f3a4574e161.tar.gz hdf5-6fddc705d6b0c51f00bb7fb9a6086f3a4574e161.tar.bz2 |
[svn-r16654] Description:
Clean up compiler warning (and test checkins on new subversion server)
Tested on:
None, just eyeballed, too minor to require test
-rw-r--r-- | src/H5B2test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5B2test.c b/src/H5B2test.c index f2cf79d..46cd510 100644 --- a/src/H5B2test.c +++ b/src/H5B2test.c @@ -456,7 +456,7 @@ H5B2_get_node_depth_test(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, hadd HGOTO_ERROR(H5E_BTREE, H5E_NOTFOUND, FAIL, "error looking up node info") /* Set return value */ - ret_value = ninfo.depth; + ret_value = (int)ninfo.depth; done: FUNC_LEAVE_NOAPI(ret_value) |