[svn-r623] Cosmetic change: H5F_mpio_read uses local var use_types_this_time in condition.

This commit is contained in:
Robert Kim Yates 1998-08-27 14:04:51 -05:00
parent 1100b30ddc
commit 6d223fa00f

View File

@ -521,7 +521,7 @@ H5F_mpio_read(H5F_low_t *lf, H5F_access_t *access_parms,
* (or even MPI_TYPE_NULL, which could mean "use MPI_BYTE" by convention).
*/
use_types_this_time = access_parms->u.mpio.use_types;
if (access_parms->u.mpio.use_types) {
if (use_types_this_time) {
/* prepare for a full-blown xfer using btype, ftype, and disp */
buf_type = access_parms->u.mpio.btype;
file_type = access_parms->u.mpio.ftype;