summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2007-10-09 19:52:05 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2007-10-09 19:52:05 (GMT)
commit457d575761e7fd5601da66f878c62b5008a90d02 (patch)
tree7905a7bd81b211b594d17dd75f79c2af798cebce /tools
parent3c064412d3d6e4eb8fc67aa6c51f14af90471622 (diff)
downloadhdf5-457d575761e7fd5601da66f878c62b5008a90d02.zip
hdf5-457d575761e7fd5601da66f878c62b5008a90d02.tar.gz
hdf5-457d575761e7fd5601da66f878c62b5008a90d02.tar.bz2
[svn-r14196] cleaned a few linux warnings
tested: linux
Diffstat (limited to 'tools')
-rw-r--r--tools/h5dump/h5dump.c24
1 files changed, 7 insertions, 17 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c
index 518edf7..f86b2b4 100644
--- a/tools/h5dump/h5dump.c
+++ b/tools/h5dump/h5dump.c
@@ -2010,13 +2010,6 @@ dump_dataset(hid_t did, const char *name, struct subset_t *sset)
d_status = EXIT_FAILURE;
}
- if(H5Pclose(dcpl_id) < 0) {
- error_msg(progname, "error in closing creation property list ID\n");
- d_status = EXIT_FAILURE;
- }
-
-
-
indentation(indent);
begin_obj(dump_header_format->datasetbegin, name,
dump_header_format->datasetblockbegin);
@@ -2031,13 +2024,8 @@ dump_dataset(hid_t did, const char *name, struct subset_t *sset)
if(display_oid)
dump_oid(did);
- if(display_dcpl) {
- hid_t dcpl_id;
-
- dcpl_id = H5Dget_create_plist(did);
+ if(display_dcpl)
dump_dcpl(dcpl_id, type, did);
- H5Pclose(dcpl_id);
- } /* end if */
if(display_data)
switch(H5Tget_class(type)) {
@@ -2077,6 +2065,8 @@ dump_dataset(hid_t did, const char *name, struct subset_t *sset)
H5Tclose(type);
H5Sclose(space);
+ H5Pclose(dcpl_id);
+
indentation(indent);
end_obj(dump_header_format->datasetend,dump_header_format->datasetblockend);
@@ -2997,14 +2987,14 @@ set_binary_form(const char *form)
static H5_index_t
set_sort_by(const char *form)
{
- H5_index_t index = H5_INDEX_UNKNOWN;
+ H5_index_t idx_type = H5_INDEX_UNKNOWN;
if (strcmp(form,"name")==0) /* H5_INDEX_NAME */
- index = H5_INDEX_NAME;
+ idx_type = H5_INDEX_NAME;
else if (strcmp(form,"creation_order")==0) /* H5_INDEX_CRT_ORDER */
- index = H5_INDEX_CRT_ORDER;
+ idx_type = H5_INDEX_CRT_ORDER;
- return index;
+ return idx_type;
}