Skip to content

Commit 6988336

Browse files
committed
fix log_text_error
1 parent 83902b6 commit 6988336

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/examples/logger/example_log_text_error.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ subroutine check_line(line, status, col_no)
3030
! scan the line for forbidden characters
3131
col_no = scan(line, ".$/")
3232
! col_no > 0 means there is a forbidden character
33-
status = col_no > 0
33+
status = col_no
3434
end subroutine
3535

3636
end program example_log_text_error
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
ADD_EXAMPLE(normal_pdf)
2-
#ADD_EXAMPLE(normal_rvs)
2+
ADD_EXAMPLE(normal_rvs)
33
ADD_EXAMPLE(norm_cdf)

0 commit comments

Comments
 (0)