Skip to content

Commit

Permalink
some variable cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
aoterodelaroza committed Oct 29, 2024
1 parent 7ad40d9 commit 6ca713c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.316
1.2.317
2 changes: 1 addition & 1 deletion src/libcritic2.f90
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ module subroutine c2_profile_background(xyfile,xyback,xyclean,nknot) bind(c,name
type(c_ptr), value, intent(in) :: xyfile
type(c_ptr), value, intent(in) :: xyback
type(c_ptr), value, intent(in) :: xyclean
integer, value, intent(in) :: nknot
integer(c_int), value, intent(in) :: nknot
end subroutine c2_profile_background
module function c2_compare_gpwdf(c1,p2,alpha,lambda,fpol) bind(c,name="c2_compare_gpwdf")
type(c_ptr), value, intent(in) :: c1
Expand Down
2 changes: 1 addition & 1 deletion src/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ module subroutine c2_profile_background(xyfile,xyback,xyclean,nknot) bind(c,name
type(c_ptr), value, intent(in) :: xyfile
type(c_ptr), value, intent(in) :: xyback
type(c_ptr), value, intent(in) :: xyclean
integer, value, intent(in) :: nknot
integer(c_int), value, intent(in) :: nknot

integer :: n, lu, i
character(len=:), allocatable :: fname, errmsg
Expand Down
4 changes: 2 additions & 2 deletions src/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -2027,12 +2027,12 @@ end subroutine struct_compare
!> without a phase change. Variable-cell version of the POWDIFF
!> comparison method in struct_compare.
module subroutine struct_comparevc(s,line)
use tools_io, only: uout, lgetword, equal
use tools_io, only: lgetword, equal
type(system), intent(in) :: s
character*(*), intent(in) :: line

integer :: lp
character(len=:), allocatable :: word, line0
character(len=:), allocatable :: word

! header and initalization
lp = 1
Expand Down

0 comments on commit 6ca713c

Please sign in to comment.