--- trunk/libf/dyn3d/abort_gcm.f90 2008/04/18 14:45:53 10 +++ trunk/libf/dyn3d/abort_gcm.f90 2008/07/21 16:05:07 12 @@ -16,7 +16,6 @@ ! ierr = severity of situation ( = 0 normal ) USE IOIPSL, only: histclo - use iniprint, only: lunout character(len=*), intent(in):: modname integer, intent(in):: ierr @@ -27,9 +26,9 @@ print *, 'abort_gcm' call histclo - write(lunout,*) 'Stopping in ', modname - write(lunout,*) 'Reason = ', trim(message) - write(lunout,*) 'Houston, we have a problem ', ierr + print *, 'Stopping in ', modname + print *, 'Reason = ', trim(message) + print *, 'Houston, we have a problem ', ierr STOP 1 END SUBROUTINE abort_gcm