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.
This commit is contained in:
Thomas König 2020-02-23 17:22:26 +01:00
parent 7260547dbf
commit 92e8508eda
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
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

View file

@ -2223,7 +2223,7 @@ argument_rank_mismatch (const char *name, locus *where,
where, where_formal, rank1);
else
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);
}
}