Commit 20787c01 by Andreas Jaeger Committed by Andreas Jaeger

* cp/rtti.c (VPARAMS): Fix parameter.

From-SVN: r45151
parent a242b083
2001-08-24 Andreas Jaeger <aj@suse.de>, rkl@connect.org.uk
* cp/rtti.c (VPARAMS): Fix parameter.
2001-08-24 Zack Weinberg <zackw@panix.com>
* expmed.c: Default-#define HAVE_insv, HAVE_extv, and HAVE_extzv
......
......@@ -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. */
......
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