[svn-r6229] Purpose:

Minor fix
Description:
    By mistake, the MPI_Error handling macros were inserted outside the
    overall macro bracket.  Moved them back inside the bracket.

Platforms tested:
    Tested h5committest {arabica (fortran), eirene (fortran, C++)
	modi4 (parallel, fortran)}?  Yep.
This commit is contained in:
Albert Cheng 2003-01-03 13:25:16 -05:00
parent a4f5705d1c
commit 3494014c72

View File

@ -132,7 +132,6 @@ H5_DLL herr_t H5E_push (H5E_major_t maj_num, H5E_minor_t min_num,
H5_DLL herr_t H5E_clear (void);
H5_DLL herr_t H5E_walk (H5E_direction_t dir, H5E_walk_t func,
void *client_data);
#endif
#ifdef H5_HAVE_PARALLEL
/*
@ -159,3 +158,5 @@ extern int H5E_mpi_error_str_len;
HRETURN_ERROR(H5E_INTERNAL, H5E_MPI, retcode, str); \
}
#endif
#endif