Skip to content

Commit 2e94e79

Browse files
committed
fix example
1 parent 4af88df commit 2e94e79

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

example_packages/features_demo/src/features_demo.f90

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,16 @@ function get_build_info() result(info)
5757
info = 'Features: '
5858

5959
#ifdef DEBUG
60-
info = trim(info) // 'DEBUG '
60+
info = trim(info) // ' DEBUG'
6161
#endif
6262
#ifdef RELEASE
63-
info = trim(info) // 'RELEASE '
63+
info = trim(info) // ' RELEASE'
6464
#endif
6565
#ifdef USE_MPI
66-
info = trim(info) // 'MPI '
66+
info = trim(info) // ' MPI'
6767
#endif
6868
#ifdef USE_OPENMP
69-
info = trim(info) // 'OPENMP '
69+
info = trim(info) // ' OPENMP'
7070
#endif
7171

7272
if (len_trim(info) == 10) then ! Only "Features: "
@@ -75,4 +75,4 @@ function get_build_info() result(info)
7575

7676
end function get_build_info
7777

78-
end module features_demo
78+
end module features_demo

0 commit comments

Comments
 (0)