summaryrefslogtreecommitdiff
path: root/gcc/cp/rtti.c
diff options
context:
space:
mode:
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-24 17:00:33 +0000
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-24 17:00:33 +0000
commitd8673056d6ea9aed85b907865f51beba94cd0c55 (patch)
tree0d6577d6360c77a110fb6e6dc691578fd5599614 /gcc/cp/rtti.c
parentde7d059c2bc43f76e33a5407772ab9cc0fc00f10 (diff)
downloadgcc-d8673056d6ea9aed85b907865f51beba94cd0c55.tar.gz
* cp/rtti.c (VPARAMS): Fix parameter.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45151 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/rtti.c')
-rw-r--r--gcc/cp/rtti.c2
1 files changed, 1 insertions, 1 deletions
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. */