added (I4P) to output integer type of Get_Unit function since plain integer resulted in compiler error (with ifort 14)
This commit is contained in:
parent
0f101c8dbf
commit
ddc88d4cd6
|
@ -481,7 +481,7 @@ contains
|
||||||
integer function Get_Unit(Free_Unit)
|
integer function Get_Unit(Free_Unit)
|
||||||
!---------------------------------------------------------------------------------------------------------------------------------
|
!---------------------------------------------------------------------------------------------------------------------------------
|
||||||
implicit none
|
implicit none
|
||||||
integer, intent(OUT), optional:: Free_Unit !< Free logic unit.
|
integer(I4P), intent(OUT), optional:: Free_Unit !< Free logic unit.
|
||||||
integer:: n1 !< Counter.
|
integer:: n1 !< Counter.
|
||||||
integer:: ios !< Inquiring flag.
|
integer:: ios !< Inquiring flag.
|
||||||
logical:: lopen !< Inquiring flag.
|
logical:: lopen !< Inquiring flag.
|
||||||
|
|
Loading…
Reference in New Issue