diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-05-10 13:47:14 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-05-10 13:47:14 (GMT) |
commit | b6446f2a6f3be0882e10cd29347fef07570c66d5 (patch) | |
tree | 079dec2cb19145729d28fdb40c9c349cd083ae60 | |
parent | 988e4ce0bb1fbb4e1d72001d485658f4131f048f (diff) | |
download | hdf5-b6446f2a6f3be0882e10cd29347fef07570c66d5.zip hdf5-b6446f2a6f3be0882e10cd29347fef07570c66d5.tar.gz hdf5-b6446f2a6f3be0882e10cd29347fef07570c66d5.tar.bz2 |
[svn-r3902] Purpose:
Bug fix
Description:
test_mpio_offset() was called with wrong syntax. Dumb mistake.
Platforms tested:
modi4, pp
-rw-r--r-- | testpar/t_mpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_mpi.c b/testpar/t_mpi.c index 6540e7e..a392106 100644 --- a/testpar/t_mpi.c +++ b/testpar/t_mpi.c @@ -415,7 +415,7 @@ main(int argc, char **argv) } MPI_BANNER("MPIO OFFSET overflow test..."); - test_mpio_offset(filenames[0]); + test_mpio_offset(); MPI_BANNER("MPIO GB size file test..."); test_mpio_gb_file(filenames[0]); MPI_BANNER("MPIO independent overlapping writes..."); |