Skip to content

Commit a87c465

Browse files
author
Anand
committed
Format
1 parent 1d26c3a commit a87c465

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/common/m_helper_basic.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ contains
143143
buff_size = max(buff_size, 6)
144144
end if
145145

146-
if(ib) then
146+
if (ib) then
147147
buff_size = max(buff_size, 6)
148148
end if
149149

src/simulation/m_ibm.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,8 @@ contains
404404
do while ((temp_loc < s_cc(index) &
405405
.or. temp_loc > s_cc(index + 1)))
406406
index = index + dir
407-
if(index < -buff_size .or. index > bound) then
408-
EXIT
407+
if (index < -buff_size .or. index > bound) then
408+
exit
409409
end if
410410
end do
411411
ghost_points_in(q)%ip_grid(dim) = index

0 commit comments

Comments
 (0)