summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-07-01 20:03:10 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-07-01 20:03:10 (GMT)
commit5ccfe5a72453299c4995b3faaaab1e35c975fde3 (patch)
tree6b301625e9865965f19572e91a0dc0b029a9cadd /tools
parent700a3f0b3cc3d053d3245d5f16066817eee99ab5 (diff)
downloadhdf5-5ccfe5a72453299c4995b3faaaab1e35c975fde3.zip
hdf5-5ccfe5a72453299c4995b3faaaab1e35c975fde3.tar.gz
hdf5-5ccfe5a72453299c4995b3faaaab1e35c975fde3.tar.bz2
[svn-r8783] Purpose:
Code cleanup Description: Clean up almost all warnings from Windows builds. Platforms tested: FreeBSD 4.10 (sleipnir) w/parallel Too minor to require h5committest
Diffstat (limited to 'tools')
-rw-r--r--tools/h5dump/h5dump.c4
-rw-r--r--tools/h5ls/h5ls.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c
index 55f7cef..5f7eabc 100644
--- a/tools/h5dump/h5dump.c
+++ b/tools/h5dump/h5dump.c
@@ -3647,7 +3647,7 @@ print_enum(hid_t type)
/* Convert values to native data type */
if (native > 0)
- H5Tconvert(super, native, (hsize_t)nmembs, value, NULL, H5P_DEFAULT);
+ H5Tconvert(super, native, nmembs, value, NULL, H5P_DEFAULT);
/*
* Sort members by increasing value
@@ -5773,7 +5773,7 @@ xml_print_enum(hid_t type)
/* Convert values to native data type */
if (native > 0)
- H5Tconvert(super, native, (hsize_t)nmembs, value, NULL, H5P_DEFAULT);
+ H5Tconvert(super, native, nmembs, value, NULL, H5P_DEFAULT);
/* Sort members by increasing value */
/*not implemented yet */
diff --git a/tools/h5ls/h5ls.c b/tools/h5ls/h5ls.c
index 6fdb7ef..8076efd 100644
--- a/tools/h5ls/h5ls.c
+++ b/tools/h5ls/h5ls.c
@@ -799,7 +799,7 @@ display_enum_type(hid_t type, int ind)
}
/* Convert values to native data type */
- if (native>0) H5Tconvert(super, native, (hsize_t)nmembs, value, NULL, H5P_DEFAULT);
+ if (native>0) H5Tconvert(super, native, nmembs, value, NULL, H5P_DEFAULT);
/* Sort members by increasing value */
/*not implemented yet*/