Skip to content

Commit e1b1814

Browse files
committed
minor update
1 parent 1de1502 commit e1b1814

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/json_file_module.F90

+2-2
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ subroutine assign_json_file_to_string(str,me)
11671167
type(json_core) :: core_copy !! a copy of `core` from `me`
11681168

11691169
if (me%core%failed() .or. .not. associated(me%p)) then
1170-
str = ''
1170+
str = CK_''
11711171
else
11721172

11731173
! This is sort of a hack. Since `me` has to have `intent(in)`
@@ -1179,7 +1179,7 @@ subroutine assign_json_file_to_string(str,me)
11791179
core_copy = me%core ! copy the parser settings
11801180

11811181
call core_copy%serialize(me%p,str)
1182-
if (me%core%failed()) str = ''
1182+
if (me%core%failed()) str = CK_''
11831183

11841184
end if
11851185

0 commit comments

Comments
 (0)