aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Burnus <burnus@net-b.de>2012-02-17 14:05:48 +0100
committerTobias Burnus <burnus@gcc.gnu.org>2012-02-17 14:05:48 +0100
commitb5912b10130d5ac5c766835d1d6f80323130bed9 (patch)
tree08739766f8ba494c8f069eade76f599898cc3813
parentbf8367ac83e3987d88575898f0698f75d1dfe922 (diff)
downloadgcc-b5912b10130d5ac5c766835d1d6f80323130bed9.zip
gcc-b5912b10130d5ac5c766835d1d6f80323130bed9.tar.gz
gcc-b5912b10130d5ac5c766835d1d6f80323130bed9.tar.bz2
re PR translation/52273 (translatable string typo: "at at %L")
2012-02-17 Tobias Burnus <burnus@net-b.de> Roland Stigge <stigge@antcom.de> PR translation/52273 * interface.c (compare_actual_formal): Fix typo "at at". Co-Authored-By: Roland Stigge <stigge@antcom.de> From-SVN: r184334
-rw-r--r--gcc/fortran/ChangeLog6
-rw-r--r--gcc/fortran/interface.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 083106d..d88120b 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,4 +1,10 @@
2012-02-17 Tobias Burnus <burnus@net-b.de>
+ Roland Stigge <stigge@antcom.de>
+
+ PR translation/52273
+ * interface.c (compare_actual_formal): Fix typo "at at".
+
+2012-02-17 Tobias Burnus <burnus@net-b.de>
* gfortran.texi (Q exponent-letter): Fix grammar.
diff --git a/gcc/fortran/interface.c b/gcc/fortran/interface.c
index 7b5f445..16a2be9 100644
--- a/gcc/fortran/interface.c
+++ b/gcc/fortran/interface.c
@@ -2429,7 +2429,7 @@ compare_actual_formal (gfc_actual_arglist **ap, gfc_formal_arglist *formal,
{
if (where)
gfc_error ("Coindexed ASYNCHRONOUS or VOLATILE actual argument at "
- "at %L requires that dummy '%s' has neither "
+ "%L requires that dummy '%s' has neither "
"ASYNCHRONOUS nor VOLATILE", &a->expr->where,
f->sym->name);
return 0;