@@ -99,20 +99,20 @@ function has_manifest(dir)
99
99
has_manifest = exists(join_path(dir, " fpm.toml" ))
100
100
end function has_manifest
101
101
102
- subroutine handle_error (e )
103
- type (error_t), optional , intent (in ) :: e
104
- if (present (e )) then
105
- write (error_unit, ' ("[Error]", 1x, a)' ) e % message
102
+ subroutine handle_error (error_ )
103
+ type (error_t), optional , intent (in ) :: error_
104
+ if (present (error_ )) then
105
+ write (error_unit, ' ("[Error]", 1x, a)' ) error_ % message
106
106
stop 1
107
107
end if
108
108
end subroutine handle_error
109
109
110
110
! > Save access to working directory in settings, in case setting have not been allocated
111
- subroutine get_working_dir (settings , w_dir )
111
+ subroutine get_working_dir (settings , working_dir_ )
112
112
class(fpm_cmd_settings), optional , intent (in ) :: settings
113
- character (len= :), allocatable , intent (out ) :: w_dir
113
+ character (len= :), allocatable , intent (out ) :: working_dir_
114
114
if (present (settings)) then
115
- w_dir = settings% working_dir
115
+ working_dir_ = settings% working_dir
116
116
end if
117
117
end subroutine get_working_dir
118
118
0 commit comments