Skip to content

Commit e9a6525

Browse files
committed
fix for GNU
1 parent 56c9ada commit e9a6525

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pre_process/include/3dHardcodedIC.fpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
real(wp) :: r, ux_th, ux_am, p_th, p_am, rho_th, rho_am, y_th, z_th, r_th, eps_smooth
99

1010
real(wp), allocatable, dimension(:, :) :: ih
11-
integer :: i, j, pos, start, end
11+
integer :: pos, start, end
1212
logical :: file_exist
1313
character(len=10000) :: line
1414
character(len=25) :: value
@@ -35,8 +35,8 @@
3535
start = start + end ! Move to next value
3636
end if
3737
read(value, *) ih(i, j) ! Convert string to numeric value
38-
if (.not. f_is_default(normMag)) ih(i,j )= ih(i,j) * normMag
39-
if (.not. f_is_default(normFac)) ih(i,j) = ih(i,j) + normFac
38+
if (.not. f_is_default(normMag)) ih(i, j) = ih(i, j) * normMag
39+
if (.not. f_is_default(normFac)) ih(i, j) = ih(i, j) + normFac
4040
end do
4141
end do
4242
close(10)

0 commit comments

Comments
 (0)