From d8673056d6ea9aed85b907865f51beba94cd0c55 Mon Sep 17 00:00:00 2001 From: aj Date: Fri, 24 Aug 2001 17:00:33 +0000 Subject: * cp/rtti.c (VPARAMS): Fix parameter. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45151 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cp/rtti.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/cp/rtti.c') diff --git a/gcc/cp/rtti.c b/gcc/cp/rtti.c index 35da7374de8..89fa5a3db7d 100644 --- a/gcc/cp/rtti.c +++ b/gcc/cp/rtti.c @@ -1170,7 +1170,7 @@ create_pseudo_type_info VPARAMS((const char *real_name, int ident, ...)) VA_START (ap, ident); #ifndef ANSI_PROTOTYPES real_name = va_arg (ap, char const *); - ident = va_arg (app, int); + ident = va_arg (ap, int); #endif /* Generate the pseudo type name. */ -- cgit v1.2.1