diff options
author | YamaArashi <shadow962@live.com> | 2016-01-06 01:48:08 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-01-06 01:48:08 -0800 |
commit | 476b5c86e5bc21311dfb14d0f043fbf5b870781d (patch) | |
tree | c3ed060120f9ed49780bb1c1323d42e47e9f7df7 /include/obstack.h | |
parent | be8b04496302184c6e8f04d6179f9c3afc50aeb6 (diff) |
get it to compile
Diffstat (limited to 'include/obstack.h')
-rwxr-xr-x | include/obstack.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/obstack.h b/include/obstack.h index 38e9677..09f1422 100755 --- a/include/obstack.h +++ b/include/obstack.h @@ -417,7 +417,8 @@ __extension__ \ ({ struct obstack *__o = (OBSTACK); \ if (__o->next_free + sizeof (void *) > __o->chunk_limit) \ _obstack_newchunk (__o, sizeof (void *)); \ - *((void **)__o->next_free)++ = ((void *)datum); \ + *((void **)__o->next_free) = ((void *)datum); \ + __o->next_free += sizeof (void *); \ (void) 0; }) # define obstack_int_grow(OBSTACK,datum) \ |