diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-06-29 17:28:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-06-29 17:28:24 +0000 |
commit | 0b8d139044f6731790bc55663f213eb11487f793 (patch) | |
tree | 031e8cc167904971acab362b5336ae5dcd4ad01c /malloc/obstack.h | |
parent | d3d355272a277bfa14914624881f600e5f8b7d10 (diff) | |
download | glibc-0b8d139044f6731790bc55663f213eb11487f793.zip glibc-0b8d139044f6731790bc55663f213eb11487f793.tar.gz glibc-0b8d139044f6731790bc55663f213eb11487f793.tar.bz2 |
Update.
2004-06-29 Ulrich Drepper <drepper@redhat.com>
* stdio-common/printf-parsemb.c (__parse_one_specmb): Initialize
info.extra. Patch by Marcus Meissner.
Diffstat (limited to 'malloc/obstack.h')
-rw-r--r-- | malloc/obstack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/obstack.h b/malloc/obstack.h index 2cf7d3b..d18ef40 100644 --- a/malloc/obstack.h +++ b/malloc/obstack.h @@ -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) (void *)((h)->object_base) +#define obstack_base(h) ((void *) (h)->object_base) /* Size for allocating ordinary chunks. */ |