Skip to content

Fix invalid Fortran format string in json_out.f90#94

Open
angelodibella wants to merge 1 commit intohande-qmc:mainfrom
angelodibella:fix/json-format-string
Open

Fix invalid Fortran format string in json_out.f90#94
angelodibella wants to merge 1 commit intohande-qmc:mainfrom
angelodibella:fix/json-format-string

Conversation

@angelodibella
Copy link
Copy Markdown

The format string '('//xc//'a)' in write_key produces e.g. '(5Xa)', which places two format descriptors (5X and a) without a comma separator. This is invalid Fortran and causes a compilation failure with GFortran.

The format string '('//xc//'a)' in write_key produces e.g. '(5Xa)',
which places two format descriptors (5X and a) without a comma
separator. This is invalid Fortran and causes a compilation failure
with GFortran. Insert the missing comma: '('//xc//',a)' -> '(5X,a)'.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant