diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-09-11 04:55:19 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-09-11 04:55:19 (GMT) |
commit | 1ebf933310232f12e2c5e1e3a39efe3a3c6bcf15 (patch) | |
tree | 2f8f9bea871eee4e23a6be1ad02867439658b3ae /perform/perf.c | |
parent | dbd148cb9466f2aacf93e26b47d80670dabdbd49 (diff) | |
download | hdf5-1ebf933310232f12e2c5e1e3a39efe3a3c6bcf15.zip hdf5-1ebf933310232f12e2c5e1e3a39efe3a3c6bcf15.tar.gz hdf5-1ebf933310232f12e2c5e1e3a39efe3a3c6bcf15.tar.bz2 |
[svn-r4435] Purpose:
Bug fix.
Description:
The default file name used is /foo/test.out that usually
is not legal. Changed it to /tmp/test.out.
Platforms tested:
eirene (parallel).
Diffstat (limited to 'perform/perf.c')
-rw-r--r-- | perform/perf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perform/perf.c b/perform/perf.c index a4a0678..b029059 100644 --- a/perform/perf.c +++ b/perform/perf.c @@ -61,7 +61,7 @@ int opt_iter = 1; int opt_stripe = -1; int opt_correct = 0; int amode = O_RDWR | O_CREAT; -char opt_file[256] = "/foo/test.out\0"; +char opt_file[256] = "/tmp/test.out\0"; char opt_pvfstab[256] = "notset\0"; int opt_pvfstab_set = 0; |