Small fix in parallel case suggested by P. Cazzato

git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@2243 c92efa57-630b-4861-b058-cf58834340f0
This commit is contained in:
giannozz 2005-09-28 15:50:31 +00:00
parent 088955c3e8
commit e0945a50a2
1 changed files with 5 additions and 4 deletions

View File

@ -36,8 +36,9 @@ SUBROUTINE errore( calling_routine, message, ierr )
! the output messagee
INTEGER, INTENT(IN) :: ierr
! the error flag
INTEGER :: mpime
INTEGER :: mpime, mpierr
! the task id
!
LOGICAL :: exists
!
!
@ -72,7 +73,7 @@ SUBROUTINE errore( calling_routine, message, ierr )
!
mpime = 0
!
CALL MPI_COMM_RANK( MPI_COMM_WORLD, mpime, ierr )
CALL MPI_COMM_RANK( MPI_COMM_WORLD, mpime, mpierr )
!
! .. write the message to a file and close it before exiting
! .. this will prevent loss of information on systems that
@ -93,9 +94,9 @@ SUBROUTINE errore( calling_routine, message, ierr )
!
! ... try to exit in a smooth way
!
CALL MPI_ABORT( MPI_COMM_WORLD, ierr )
CALL MPI_ABORT( MPI_COMM_WORLD, mpierr )
!
CALL MPI_FINALIZE( ierr )
CALL MPI_FINALIZE( mpierr )
!
#endif
!