mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
[BZ #1331]
2005-09-12 Roland McGrath <roland@redhat.com> [BZ #1331] * malloc/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed macro argument. Reported by Matej Vela <vela@debian.org>.
This commit is contained in:
parent
9ea9af192b
commit
58b523646c
@ -1,5 +1,6 @@
|
|||||||
/* obstack.h - object stack macros
|
/* obstack.h - object stack macros
|
||||||
Copyright (C) 1988-1994,1996-1999,2003,2004 Free Software Foundation, Inc.
|
Copyright (C) 1988-1994,1996-1999,2003,2004,2005
|
||||||
|
Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library. Its master source is NOT part of
|
This file is part of the GNU C Library. Its master source is NOT part of
|
||||||
the C library, however. The master source lives in /gd/gnu/lib.
|
the C library, however. The master source lives in /gd/gnu/lib.
|
||||||
|
|
||||||
@ -446,7 +447,7 @@ __extension__ \
|
|||||||
(((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
|
(((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr))
|
||||||
|
|
||||||
# define obstack_int_grow_fast(h,aint) \
|
# define obstack_int_grow_fast(h,aint) \
|
||||||
(((int *) ((h)->next_free += sizeof (int)))[-1] = (aptr))
|
(((int *) ((h)->next_free += sizeof (int)))[-1] = (aint))
|
||||||
|
|
||||||
# define obstack_blank(h,length) \
|
# define obstack_blank(h,length) \
|
||||||
( (h)->temp = (length), \
|
( (h)->temp = (length), \
|
||||||
|
Loading…
Reference in New Issue
Block a user