From 92e8508edaccca6f33098972ce29679375c07cd6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20K=C3=B6nig?= Date: Sun, 23 Feb 2020 17:22:26 +0100 Subject: [PATCH] Add missing closing parenthises in error message. 2020-02-23 Thomas Koenig PR fortran/93889 * interface.c (compare_parameter): Fix error message. --- gcc/fortran/ChangeLog | 5 +++++ gcc/fortran/interface.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 5f889fb..1ed6a97 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,5 +1,10 @@ 2020-02-23 Thomas Koenig + PR fortran/93889 + * interface.c (compare_parameter): Fix error message. + +2020-02-23 Thomas Koenig + PR fortran/93890 * interface.c: Replace "can not" by "cannot" and remove trailing space. diff --git a/gcc/fortran/interface.c b/gcc/fortran/interface.c index 4106fe5..14d03c2 100644 --- a/gcc/fortran/interface.c +++ b/gcc/fortran/interface.c @@ -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); } } -- 2.7.4