Skip to content

Commit 4b82f14

Browse files
committed
fixed character kind typos for unicode.
1 parent 6345937 commit 4b82f14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/json_value_module.F90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7797,7 +7797,7 @@ subroutine json_parse_file(json, file, p, unit)
77977797
integer(IK) :: istat !! iostat flag
77987798
logical(LK) :: is_open !! if the file is already open
77997799
logical(LK) :: has_duplicate !! if checking for duplicate keys
7800-
character(kind=CDK,len=:),allocatable :: path !! path to any duplicate key
7800+
character(kind=CK,len=:),allocatable :: path !! path to any duplicate key
78017801

78027802
!clear any exceptions and initialize:
78037803
call json%initialize()
@@ -7901,7 +7901,7 @@ subroutine json_parse_string(json, p, str)
79017901
integer(IK),parameter :: iunit = 0 !! indicates that json data will be read from buffer
79027902

79037903
logical(LK) :: has_duplicate !! if checking for duplicate keys
7904-
character(kind=CDK,len=:),allocatable :: path !! path to any duplicate key
7904+
character(kind=CK,len=:),allocatable :: path !! path to any duplicate key
79057905

79067906
!clear any exceptions and initialize:
79077907
call json%initialize()

0 commit comments

Comments
 (0)