]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 29 Jun 2004 06:28:18 +0000 (06:28 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 29 Jun 2004 06:28:18 +0000 (06:28 +0000)
2004-06-20  Jim Meyering  <jim@meyering.net>

* malloc/obstack.h (obstack_base): Cast to `void *', to align with
documentation.

ChangeLog
malloc/obstack.h

index 4c64ddd8696e841104068461a0eb8858f630947e..d030c662cd5d095165de633d54a1b419b3a77120 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-06-20  Jim Meyering  <jim@meyering.net>
+
+       * malloc/obstack.h (obstack_base): Cast to `void *', to align with
+       documentation.
+
 2004-06-28  Ulrich Drepper  <drepper@redhat.com>
 
        * inet/bug-if1.c (do_test): Simply use 0 as invalid index.
index 91e101ab9250980ab2cc6d8fff87d94aba7e210f..2cf7d3be11d2a0682ea63e3571b34ec8ce4b4e17 100644 (file)
@@ -194,7 +194,7 @@ extern int obstack_exit_failure;
    Note that this might not be the final address of the object
    because a new chunk might be needed to hold the final size.  */
 
-#define obstack_base(h) ((h)->object_base)
+#define obstack_base(h) (void *)((h)->object_base)
 
 /* Size for allocating ordinary chunks.  */
 
This page took 0.499467 seconds and 5 git commands to generate.