Commit 800cee34 by Steven G. Kargl

2009-11-06 Steven G. Kargl <kargl@gcc.gnu.org>

        resolve.c (check_typebound_override): Remove duplicate "in" in error
        message.

From-SVN: r153982
parent 8e32aa11
2009-11-06 Steven G. Kargl <kargl@gcc.gnu.org>
resolve.c (check_typebound_override): Remove duplicate "in" in error
message.
2009-11-05 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/41918
......
......@@ -9480,8 +9480,8 @@ check_typebound_override (gfc_symtree* proc, gfc_symtree* old)
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;
}
......
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