This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: c++/4095


On Fri, Sep 28, 2001 at 12:21:29AM -0700, Richard Henderson wrote:
> On Fri, Sep 28, 2001 at 12:04:00AM -0400, Craig Rodrigues wrote:
> > http://gcc.gnu.org/ml/gcc-patches/2001-09/msg00613.html
> 
> Ok.

Thanks.

Please apply.


2001-09-28  Craig Rodrigues  <rodrigc@gcc.gnu.org>

	PR c++/4095
	* rtti.c (create_pseudo_type_info): Fix parameter


Index: rtti.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cp/rtti.c,v
retrieving revision 1.109.2.4
diff -u -r1.109.2.4 rtti.c
--- rtti.c	2001/09/22 01:33:24	1.109.2.4
+++ rtti.c	2001/09/28 22:53:55
@@ -1290,7 +1290,7 @@
   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. */
-- 
Craig Rodrigues        
http://www.gis.net/~craigr    
rodrigc@mediaone.net          


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]