Skip to content

Commit 427eb87

Browse files
committed
fix
1 parent cb289a9 commit 427eb87

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lint-source.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
- name: Lint the full source
3232
run: |
3333
source build/venv/bin/activate
34-
find ./src -type f -not -name '*nvtx*' -exec command fortitude check {} \;
35-
find ./src -type f -not -name '*nvtx*' -exec command fortitude check {} \; | wc -l | xargs -I{} sh -c '[ {} -gt 0 ] && exit 1 || exit 0'
34+
find ./src -type f -not -name '*nvtx*' -exec fortitude check {} \;
35+
find ./src -type f -not -name '*nvtx*' -exec fortitude check {} \; | wc -l | xargs -I{} sh -c '[ {} -gt 0 ] && exit 1 || exit 0'
3636
3737
- name: No double precision intrinsics
3838
run: |

src/pre_process/m_perturbation.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -497,8 +497,8 @@ contains
497497
real(wp) :: ang, norm
498498
real(wp) :: tr, ti, cr, ci !< temporary memory
499499
real(wp) :: xratio
500-
integer idx
501-
integer i, j, k
500+
integer :: idx
501+
integer :: i, j, k
502502

503503
xratio = mixlayer_vel_coef
504504

0 commit comments

Comments
 (0)