Skip to content

Commit e1afc82

Browse files
committed
Use longer names
1 parent 81ba0bb commit e1afc82

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

app/main.f90

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -99,20 +99,20 @@ function has_manifest(dir)
9999
has_manifest = exists(join_path(dir, "fpm.toml"))
100100
end function has_manifest
101101

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
106106
stop 1
107107
end if
108108
end subroutine handle_error
109109

110110
!> 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_)
112112
class(fpm_cmd_settings), optional, intent(in) :: settings
113-
character(len=:), allocatable, intent(out) :: w_dir
113+
character(len=:), allocatable, intent(out) :: working_dir_
114114
if (present(settings)) then
115-
w_dir = settings%working_dir
115+
working_dir_ = settings%working_dir
116116
end if
117117
end subroutine get_working_dir
118118

0 commit comments

Comments
 (0)