This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
[PATCH, committed] Remove a duplicate word in an error message.
- From: Steve Kargl <sgk at troutmask dot apl dot washington dot edu>
- To: fortran at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Date: Fri, 6 Nov 2009 15:49:06 -0800
- Subject: [PATCH, committed] Remove a duplicate word in an error message.
Committed under the obviously correct rule.
2009-11-06 Steven G. Kargl <kargl@gcc.gnu.org>
resolve.c (check_typebound_override): Remove duplicate "in" in error
message.
Index: resolve.c
===================================================================
--- resolve.c (revision 153981)
+++ resolve.c (working copy)
@@ -9480,8 +9480,8 @@ check_typebound_override (gfc_symtree* p
if (proc_pass_arg != argpos && old_pass_arg != argpos
&& !gfc_compare_types (&proc_formal->sym->ts, &old_formal->sym->ts))
{
- gfc_error ("Types mismatch for dummy argument '%s' of '%s' %L in"
- " in respect to the overridden procedure",
+ gfc_error ("Types mismatch for dummy argument '%s' of '%s' %L "
+ "in respect to the overridden procedure",
proc_formal->sym->name, proc->name, &where);
return FAILURE;
}
--
Steve