Quiet compiler warning.

Make the implicit cast explicit to quiet a compiler warning.
master
Christopher J. Morrone 2011-11-02 14:05:17 -07:00
parent ea7f987d80
commit f497b67d3f
1 changed files with 1 additions and 1 deletions

View File

@ -455,7 +455,7 @@ IOR_GetFileSize_MPIIO(IOR_param_t * test,
MPI_CHECK(MPI_File_open(testComm, testFileName, MPI_MODE_RDONLY,
MPI_INFO_NULL, &fd),
"cannot open file to get file size");
MPI_CHECK(MPI_File_get_size(fd, &aggFileSizeFromStat),
MPI_CHECK(MPI_File_get_size(fd, (MPI_Offset *)&aggFileSizeFromStat),
"cannot get file size");
MPI_CHECK(MPI_File_close(&fd), "cannot close file");