summaryrefslogtreecommitdiffstats
path: root/src/H5B2test.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-04-02 18:08:05 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-04-02 18:08:05 (GMT)
commit6fddc705d6b0c51f00bb7fb9a6086f3a4574e161 (patch)
treec2b4ed41ad256280699103c22bfcc774be0b8e6e /src/H5B2test.c
parent5d4294042e459b998d642c33d6233a6912f67c77 (diff)
downloadhdf5-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
Diffstat (limited to 'src/H5B2test.c')
-rw-r--r--src/H5B2test.c2
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)