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]
Other format: [Raw text]

Re: [ada] Convert .[ch] files to use C90 prototypes.


Kelley Cook <kcook34@ford.com> writes:

> @@ -861,11 +850,10 @@
>     UW_CONTEXT in REGION.  */
>  
>  static void
> -get_action_description_for (uw_context, uw_exception, region, action)
> -     _Unwind_Context *uw_context;
> -     _Unwind_Exception *uw_exception;
> -     region_descriptor *region;
> -     action_descriptor *action;
> +get_action_description_for (_Unwind_Context *uw_context,
> +                            _Unwind_Exception *uw_exception,
> +                            region_descriptor *regionr,
> +                            action_descriptor *actionr)
>  {
>    _GNAT_Exception * gnat_exception = (_GNAT_Exception *) uw_exception;
>  

2003-10-31  Andreas Schwab  <schwab@suse.de>

	* raise.c (get_action_description_for): Fix typo in last change.

--- gcc/ada/raise.c.~1.9.~	2003-10-31 12:59:33.000000000 +0100
+++ gcc/ada/raise.c	2003-10-31 13:02:38.000000000 +0100
@@ -852,8 +852,8 @@ get_call_site_action_for (_Unwind_Contex
 static void
 get_action_description_for (_Unwind_Context *uw_context,
                             _Unwind_Exception *uw_exception,
-                            region_descriptor *regionr,
-                            action_descriptor *actionr)
+                            region_descriptor *region,
+                            action_descriptor *action)
 {
   _GNAT_Exception * gnat_exception = (_GNAT_Exception *) uw_exception;
 

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux AG, Deutschherrnstr. 15-19, D-90429 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


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