Skip to content

Commit debf828

Browse files
committed
satiate the linter (why am i doing this?)
1 parent 5a84b05 commit debf828

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/post_process/m_lapack_example.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ impure subroutine s_lapack_example_solve_linear_system()
5959
! Call appropriate LAPACK routine based on precision
6060
#ifdef MFC_SINGLE_PRECISION
6161
call sgesv(n, nrhs, A, n, ipiv, x, n, info)
62-
print *, "Using single precision LAPACK (SGESV)"
62+
print *, "Using sing. prec. LAPACK (SGESV)"
6363
#else
6464
call dgesv(n, nrhs, A, n, ipiv, x, n, info)
65-
print *, "Using double precision LAPACK (DGESV)"
65+
print *, "Using doub. prec. LAPACK (DGESV)"
6666
#endif
6767

6868
! Check for success

0 commit comments

Comments
 (0)