Skip to content

Commit

Permalink
fixed an issue where using quad precision would cause errors in the p…
Browse files Browse the repository at this point in the history
…ython script

since the number to string didn't have enough digits to print the string
  • Loading branch information
jacobwilliams committed Oct 1, 2022
1 parent da68b01 commit b8aa998
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyplot_module.F90
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module pyplot_module
character(len=*), parameter :: int_fmt = '(I10)' !! integer format string
integer, parameter :: max_int_len = 10 !! max string length for integers
character(len=*), parameter :: real_fmt_default = '(E30.16)' !! default real number format string
integer, parameter :: max_real_len = 30 !! max string length for reals
integer, parameter :: max_real_len = 60 !! max string length for reals

type, public :: pyplot

Expand Down

0 comments on commit b8aa998

Please sign in to comment.