Paul Eggert wrote: > @@ -119,8 +119,8 @@ GL_STACK_STORAGECLASS void > _GL_STACK_PREFIX (push) (_GL_STACK_TYPE *stack, GL_STACK_ELEMENT item) > { > if (stack->size == stack->allocated) > - stack->base = x2nrealloc (stack->base, &stack->allocated, > - sizeof (GL_STACK_ELEMENT)); > + stack->base = xpalloc (stack->base, &stack->allocated, 1, -1, > + sizeof *stack->base);;
There is a stray semicolon here. Bruno