diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2002-05-03 22:36:38 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2002-05-03 22:36:38 (GMT) |
commit | 0673d765124194b1a592913059ef32f93d2b1a13 (patch) | |
tree | 1f16496146a36f4f2e943c0e82e23b5afdb58eea | |
parent | d99e67fe13babba74b432c3680205cd7a999e7d0 (diff) | |
download | hdf5-0673d765124194b1a592913059ef32f93d2b1a13.zip hdf5-0673d765124194b1a592913059ef32f93d2b1a13.tar.gz hdf5-0673d765124194b1a592913059ef32f93d2b1a13.tar.bz2 |
[svn-r5353]
Purpose:
code clean up to erase windows warnings
Description:
Solution:
Platforms tested:
linux, w2000
-rw-r--r-- | tools/h5dump/h5dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c index c61c7ed..8ff45b0 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -4828,7 +4828,7 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t * UNUSED sset) indent += COL; H5Aiterate(did, NULL, dump_function_table->dump_attribute_function, NULL); indent -= COL; - i = H5Dget_storage_size(did); + i = (int)H5Dget_storage_size(did); if (display_data && (i > 0)) { switch (H5Tget_class(type)) { |