Skip to content

Commit f8c901c

Browse files
authored
Add missing dollar # OpenMP directive. Closes #840. (#841)
1 parent 4be07af commit f8c901c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/fpm_environment.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ integer function get_os_type() result(r)
4141
logical :: file_exists
4242
logical, save :: first_run = .true.
4343
integer, save :: ret = OS_UNKNOWN
44-
!omp threadprivate(ret, first_run)
44+
!$omp threadprivate(ret, first_run)
4545

4646
if (.not. first_run) then
4747
r = ret

0 commit comments

Comments
 (0)