summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRobert E. McGrath <mcgrath@ncsa.uiuc.edu>2003-10-25 19:34:47 (GMT)
committerRobert E. McGrath <mcgrath@ncsa.uiuc.edu>2003-10-25 19:34:47 (GMT)
commit73afb8ce3eb7297000fe165f9cea2493118d64ea (patch)
treead99e77233db29b85e02bfb758af31b182030f0c /tools
parent5e2f37f579d4280727a052294dc17e92d070e5c0 (diff)
downloadhdf5-73afb8ce3eb7297000fe165f9cea2493118d64ea.zip
hdf5-73afb8ce3eb7297000fe165f9cea2493118d64ea.tar.gz
hdf5-73afb8ce3eb7297000fe165f9cea2493118d64ea.tar.bz2
[svn-r7736] Purpose:
Fix bug. Description: Wrong parameter in subroutine call. Note: this only affects '--xml', and only affects the value of the fill value that is reported. Solution: put correct parameter in subroutine call Platforms tested: verbena Misc. update:
Diffstat (limited to 'tools')
-rw-r--r--tools/h5dump/h5dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c
index 7f5c814..5431e21 100644
--- a/tools/h5dump/h5dump.c
+++ b/tools/h5dump/h5dump.c
@@ -5386,7 +5386,7 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t UNUSED * sset)
indentation(indent + COL);
printf("<%sNoFill/>\n",xmlnsprefix);
} else {
- xml_dump_fill_value(did,type);
+ xml_dump_fill_value(dcpl,type);
}
indent -= COL;