* lib/obstack.in.h (obstack_free): Fix typo.
+2025-05-12 Bruno Haible <bruno@clisp.org>
+
+ obstack: Fix compilation error on MSVC (regression 2025-05-07).
+ * lib/obstack.in.h (obstack_free): Fix typo.
+
2025-05-12 Bruno Haible <bruno@clisp.org>
doc: Update for a few recently fixed Hurd bugs.
# define obstack_free(h, obj) \
((h)->temp.tempptr = (void *) (obj), \
- (((_OBSTACK_CPTR) (h)->chunk < (OBSTACK_CPTR) (h)->temp.tempptr \
+ (((_OBSTACK_CPTR) (h)->chunk < (_OBSTACK_CPTR) (h)->temp.tempptr \
&& (_OBSTACK_CPTR) (h)->temp.tempptr < (_OBSTACK_CPTR) (h)->chunk_limit) \
? (void) ((h)->next_free = (h)->object_base = (char *) (h)->temp.tempptr) \
: __obstack_free (h, (h)->temp.tempptr)))