Skip to content

Commit a932653

Browse files
committed
intel compiler hack
1 parent 2c47354 commit a932653

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/stdlib_system.F90

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,11 @@ pure function fs_error_code(code,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10, &
792792
class(*), intent(in), optional, dimension(..) :: a1,a2,a3,a4,a5,a6,a7,a8,a9,a10, &
793793
a11,a12,a13,a14,a15,a16,a17,a18
794794

795-
state = state_type(STDLIB_FS_ERROR, "code -", to_string(code)//",",a1,a2,a3,a4,a5,a6,a7,a8, &
795+
character(:), allocatable :: code_str
796+
797+
code_str = to_string(code) // ","
798+
799+
state = state_type(STDLIB_FS_ERROR, "code -",code_str,a1,a2,a3,a4,a5,a6,a7,a8, &
796800
a9,a10,a11,a12,a13,a14,a15,a16,a17,a18)
797801
end function fs_error_code
798802

0 commit comments

Comments
 (0)