Skip to content

Commit 43675cd

Browse files
committed
Made default real format when initialize() is not called consistent with recent change. See #232.
1 parent 088b802 commit 43675cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/json_value_module.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ subroutine json_initialize(json,verbose,compact_reals,&
847847
trim(w) // '.' // trim(d) // 'E' // trim(e) // ')'
848848
else
849849
json%real_fmt = '(' // sgn // ',' // trim(rl_edit_desc) // &
850-
'30.16E3)' !just use this one (should never happen)
850+
'27.17E4)' !just use this one (should never happen)
851851
end if
852852

853853
end if

0 commit comments

Comments
 (0)