Commit 92e8508e by Thomas König

Add missing closing parenthises in error message.

2020-02-23  Thomas Koenig  <tkoenig@gcc.gnu.org>

	PR fortran/93889
	* interface.c (compare_parameter): Fix error message.
parent 7260547d
2020-02-23 Thomas Koenig <tkoenig@gcc.gnu.org> 2020-02-23 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/93889
* interface.c (compare_parameter): Fix error message.
2020-02-23 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/93890 PR fortran/93890
* interface.c: Replace "can not" by "cannot" and remove trailing * interface.c: Replace "can not" by "cannot" and remove trailing
space. space.
......
...@@ -2223,7 +2223,7 @@ argument_rank_mismatch (const char *name, locus *where, ...@@ -2223,7 +2223,7 @@ argument_rank_mismatch (const char *name, locus *where,
where, where_formal, rank1); where, where_formal, rank1);
else else
gfc_error_opt (0, "Rank mismatch between actual argument at %L " gfc_error_opt (0, "Rank mismatch between actual argument at %L "
"and actual argument at %L (rank-%d and rank-%d", where, "and actual argument at %L (rank-%d and rank-%d)", where,
where_formal, rank1, rank2); where_formal, rank1, rank2);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment