OSDN Git Service

* seh_init.c (__gnat_SEH_error_handler): Mark third and fourth
authordannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 27 Feb 2005 01:12:13 +0000 (01:12 +0000)
committerdannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 27 Feb 2005 01:12:13 +0000 (01:12 +0000)
parameters as unused.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95604 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ada/ChangeLog
gcc/ada/seh_init.c

index 27e172f..722c3b9 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-27  Danny Smith  <dannysmith@users.sourceforge.net>    
+
+       * seh_init.c (__gnat_SEH_error_handler): Mark third and fourth 
+       parameters as unused.
+
 2005-02-26  Nathanael Nerode  <neroden@gcc.gnu.org>
        Partial merge from libada-gnattools-branch:
 
index cf1ada8..15cda4f 100644 (file)
@@ -74,8 +74,8 @@ EXCEPTION_DISPOSITION __gnat_SEH_error_handler
 EXCEPTION_DISPOSITION
 __gnat_SEH_error_handler (struct _EXCEPTION_RECORD* ExceptionRecord,
                          void *EstablisherFrame,
-                         struct _CONTEXT* ContextRecord,
-                         void *DispatcherContext)
+                         struct _CONTEXT* ContextRecord ATTRIBUTE_UNUSED,
+                         void *DispatcherContext ATTRIBUTE_UNUSED)
 {
   struct Exception_Data *exception;
   const char *msg;