Skip to content

Commit

Permalink
Attempt p76 in fortran (8)
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Oct 3, 2024
1 parent 0f615df commit a5a1ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fortran/src/include/primes.f90
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ end function next_prime

subroutine expand_sieve(potential_n)
integer(i18t), intent(in), optional :: potential_n
integer(i18t) :: new_size, new_n, i
integer(i18t) :: new_size, new_n

if (present(potential_n)) then
new_n = max(potential_n, current_n)
Expand Down

0 comments on commit a5a1ba5

Please sign in to comment.