aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/interface.c
diff options
context:
space:
mode:
authorSteven Bosscher <stevenb@suse.de>2005-10-29 13:08:33 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2005-10-29 13:08:33 +0000
commit55898b2c1b1980749601ef9db643c155fa21a60c (patch)
tree206fd3247857e9ad8d58fd0eb3484aa353eb922c /gcc/fortran/interface.c
parent631190f24390d5d1a5e7d82c86c18e5805c6b514 (diff)
downloadgcc-55898b2c1b1980749601ef9db643c155fa21a60c.zip
gcc-55898b2c1b1980749601ef9db643c155fa21a60c.tar.gz
gcc-55898b2c1b1980749601ef9db643c155fa21a60c.tar.bz2
interface.c: Fix previous checkin (an incomplete patch was commited for me).
* interface.c: Fix previous checkin (an incomplete patch was commited for me). From-SVN: r105992
Diffstat (limited to 'gcc/fortran/interface.c')
-rw-r--r--gcc/fortran/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/interface.c b/gcc/fortran/interface.c
index d8da617..5dc6944 100644
--- a/gcc/fortran/interface.c
+++ b/gcc/fortran/interface.c
@@ -298,7 +298,7 @@ gfc_match_end_interface (void)
|| strcmp (current_interface.uop->name, name) != 0)
{
gfc_error ("Expecting 'END INTERFACE OPERATOR (.%s.)' at %C",
- current_interface.sym->name);
+ current_interface.uop->name);
m = MATCH_ERROR;
}