OSDN Git Service

* obstack.h (obstack_finish <!__GNUC__>): Cast result to void *.
authoramodra <amodra>
Mon, 20 Oct 2008 23:03:31 +0000 (23:03 +0000)
committeramodra <amodra>
Mon, 20 Oct 2008 23:03:31 +0000 (23:03 +0000)
include/ChangeLog
include/obstack.h

index 671bee3..beb78b7 100644 (file)
@@ -1,3 +1,7 @@
+2008-10-21  Alan Modra  <amodra@bigpond.net.au>
+
+       * obstack.h (obstack_finish <!__GNUC__>): Cast result to void *.
+
 2008-10-06  Jason Merrill  <jason@redhat.com>
 
        * demangle.h (enum demangle_component_type): Add
index 88c2a26..4aec3a4 100644 (file)
@@ -1,6 +1,6 @@
 /* obstack.h - object stack macros
    Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998,
-   1999, 2000, 2001, 2002, 2003, 2004, 2005
+   1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
    Free Software Foundation, Inc.
 
 
@@ -527,7 +527,7 @@ __extension__                                                               \
     > (h)->chunk_limit - (char *) (h)->chunk)                          \
    ? ((h)->next_free = (h)->chunk_limit) : 0),                         \
   (h)->object_base = (h)->next_free,                                   \
-  __INT_TO_PTR ((h)->temp))
+  (void *) __INT_TO_PTR ((h)->temp))
 
 # define obstack_free(h,obj)                                           \
 ( (h)->temp = (char *) (obj) - (char *) (h)->chunk,                    \