From: Chris Hanson Date: Wed, 7 Jan 2004 04:50:47 +0000 (+0000) Subject: Fix compilation error caused by change to "obstack.h". X-Git-Tag: 20090517-FFI~1735 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=5239dcf8b95751f1ddaa02ab391f424c9c75e9b5;p=mit-scheme.git Fix compilation error caused by change to "obstack.h". --- diff --git a/v7/src/microcode/obstack.c b/v7/src/microcode/obstack.c index c2ab5dfec..82fed3c9c 100644 --- a/v7/src/microcode/obstack.c +++ b/v7/src/microcode/obstack.c @@ -57,7 +57,7 @@ _obstack_begin (h, size, alignment, chunkfun, freefun) struct obstack *h; int size; long alignment; - POINTER EXFUN ((*chunkfun), (long)); + POINTER EXFUN ((*chunkfun), (size_t)); void EXFUN ((*freefun), (PTR)); { register struct _obstack_chunk* chunk; /* points to new chunk */