diff options
Diffstat (limited to 'testpar/t_file.c')
-rw-r--r-- | testpar/t_file.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testpar/t_file.c b/testpar/t_file.c index 59ca232..c83a1af 100644 --- a/testpar/t_file.c +++ b/testpar/t_file.c @@ -32,7 +32,7 @@ * sooner or later due to barrier mixed up. */ void -test_split_comm_access(char *filename) +test_split_comm_access(void) { int mpi_size, mpi_rank; MPI_Comm comm; @@ -43,7 +43,9 @@ test_split_comm_access(char *filename) hid_t acc_tpl; /* File access properties */ hbool_t use_gpfs = FALSE; /* Use GPFS hints */ herr_t ret; /* generic return value */ + char *filename; + filename = (char *) GetTestParameters(); if (VERBOSE_MED) printf("Split Communicator access test on file %s\n", filename); |