diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-06-19 12:54:53 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-06-19 12:54:53 (GMT) |
commit | aefc39ac325f25d1978ad07785ee0b57617d17a5 (patch) | |
tree | fca00816adc4c767109b92e4892f77abc40be3b9 /testpar/t_mpi.c | |
parent | 64b7be4a52b14dfefc7729aaf8be6649fb668cc4 (diff) | |
download | hdf5-aefc39ac325f25d1978ad07785ee0b57617d17a5.zip hdf5-aefc39ac325f25d1978ad07785ee0b57617d17a5.tar.gz hdf5-aefc39ac325f25d1978ad07785ee0b57617d17a5.tar.bz2 |
[svn-r5667] Purpose:
Code cleanup
Description:
Turn on more warnings in the IRIX builds and clean them up.
Platforms tested:
IRIX64 6.5 (modi4) w/parallel
Diffstat (limited to 'testpar/t_mpi.c')
-rw-r--r-- | testpar/t_mpi.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/testpar/t_mpi.c b/testpar/t_mpi.c index 3758d75..8f6b55a 100644 --- a/testpar/t_mpi.c +++ b/testpar/t_mpi.c @@ -25,7 +25,6 @@ hid_t fapl; /* file access property list */ /* protocols */ static void test_mpio_overlap_writes(char *filename); -static void test_mpio_offset(void); static void test_mpio_gb_file(char *filename); static void test_mpio_gb_file(char *filename); static int parse_options(int argc, char **argv); @@ -137,7 +136,7 @@ test_mpio_overlap_writes(char *filename) if ((buf[i] != expected) && (vrfyerrs++ < MAX_ERR_REPORT || verbose)) printf("proc %d: found data error at [%ld], expect %d, got %d\n", - mpi_rank, mpi_off+i, expected, buf[i]); + mpi_rank, (long)(mpi_off+i), expected, buf[i]); } if (vrfyerrs > MAX_ERR_REPORT && !verbose) printf("proc %d: [more errors ...]\n", mpi_rank); @@ -332,7 +331,7 @@ test_mpio_gb_file(char *filename) if ((*(buf+j) != expected) && (vrfyerrs++ < MAX_ERR_REPORT || verbose)) printf("proc %d: found data error at [%ld+%d], expect %d, got %d\n", - mpi_rank, mpi_off, j, expected, *(buf+j)); + mpi_rank, (long)mpi_off, j, expected, *(buf+j)); } if (vrfyerrs > MAX_ERR_REPORT && !verbose) printf("proc %d: [more errors ...]\n", mpi_rank); |