diff options
author | Robert E. McGrath <mcgrath@ncsa.uiuc.edu> | 2003-10-25 19:37:00 (GMT) |
---|---|---|
committer | Robert E. McGrath <mcgrath@ncsa.uiuc.edu> | 2003-10-25 19:37:00 (GMT) |
commit | df5d528100d6e614696028241a87c1f662578351 (patch) | |
tree | b2f627d27e5d71be1d96d5a066a822f0e2e09a5e | |
parent | ccb58382401ead849076536c7e4b2bb89923f439 (diff) | |
download | hdf5-df5d528100d6e614696028241a87c1f662578351.zip hdf5-df5d528100d6e614696028241a87c1f662578351.tar.gz hdf5-df5d528100d6e614696028241a87c1f662578351.tar.bz2 |
[svn-r7737] Purpose:
bug fix
Description:
wrong parameter to subroutine call
Solution:
use correct parameter
Platforms tested:
verbena
Misc. update:
-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 24a0e08..77ce159 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -5301,7 +5301,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; |