diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2006-08-28 00:55:27 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2006-08-28 00:55:27 (GMT) |
commit | 66d2d26f5d97eed437683c5c5e3fa15e7d368664 (patch) | |
tree | 20add75e189dd6446b48dba937d85f86099ed5a5 /tools/h5dump/h5dump.c | |
parent | 0265f1ca117cfeaea885f4619a2ad981dd92c9a0 (diff) | |
download | hdf5-66d2d26f5d97eed437683c5c5e3fa15e7d368664.zip hdf5-66d2d26f5d97eed437683c5c5e3fa15e7d368664.tar.gz hdf5-66d2d26f5d97eed437683c5c5e3fa15e7d368664.tar.bz2 |
[svn-r12634] Purpose:
Code cleanup.
Description:
Removed argc and argv from the function arguments of h5tools_get_fapl() and
h5tools_fopen(). They were used to call MPI_Init() which was no longer
needed.
Tested:
heping (serial and parallel).
Diffstat (limited to 'tools/h5dump/h5dump.c')
-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 7a49950..ef97752 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -3743,7 +3743,7 @@ main(int argc, const char *argv[]) } fname = argv[opt_ind]; - fid = h5tools_fopen(fname, driver, NULL, 0, argc, argv); + fid = h5tools_fopen(fname, driver, NULL, 0); if (fid < 0) { error_msg(progname, "unable to open file \"%s\"\n", fname); |