diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-09-11 13:04:17 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-09-11 13:04:17 -0400 |
commit | 633f745dcad9c7324f56f8ef85ee9b460b1006e7 (patch) | |
tree | 13ae225b8047e84f734d2991e0d52941f6738529 /malloc/obstack.h | |
parent | f318beb8000dfcc4d8bb9f7293dc0d3e1ecdef8e (diff) | |
download | glibc-633f745dcad9c7324f56f8ef85ee9b460b1006e7.tar glibc-633f745dcad9c7324f56f8ef85ee9b460b1006e7.tar.gz glibc-633f745dcad9c7324f56f8ef85ee9b460b1006e7.tar.bz2 glibc-633f745dcad9c7324f56f8ef85ee9b460b1006e7.zip |
Avoid cast in non-gcc obstack_free
Diffstat (limited to 'malloc/obstack.h')
-rw-r--r-- | malloc/obstack.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/malloc/obstack.h b/malloc/obstack.h index 449070e7f1..4677891472 100644 --- a/malloc/obstack.h +++ b/malloc/obstack.h @@ -1,5 +1,5 @@ /* obstack.h - object stack macros - Copyright (C) 1988-1994,1996-1999,2003,2004,2005,2009 + Copyright (C) 1988-1994,1996-1999,2003,2004,2005,2009,2011 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -496,9 +496,9 @@ __extension__ \ ( (h)->temp.tempint = (char *) (obj) - (char *) (h)->chunk, \ ((((h)->temp.tempint > 0 \ && (h)->temp.tempint < (h)->chunk_limit - (char *) (h)->chunk)) \ - ? (int) ((h)->next_free = (h)->object_base \ - = (h)->temp.tempint + (char *) (h)->chunk) \ - : (((obstack_free) ((h), (h)->temp.tempint + (char *) (h)->chunk), 0), 0))) + ? (((h)->next_free = (h)->object_base \ + = (h)->temp.tempint + (char *) (h)->chunk), 0) \ + : ((obstack_free) ((h), (h)->temp.tempint + (char *) (h)->chunk), 0))) #endif /* not __GNUC__ or not __STDC__ */ |