From: Christophe Rhodes Date: Sat, 3 Apr 2004 18:36:25 +0000 (+0000) Subject: 0.8.9.15: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=92c1f0df7ab549d69815a0867cc0db8989c75c0b;p=sbcl.git 0.8.9.15: Add (struct cons *) cast needed (observation from Perry Metzger) --- diff --git a/src/runtime/purify.c b/src/runtime/purify.c index f64e290..8f7a44e 100644 --- a/src/runtime/purify.c +++ b/src/runtime/purify.c @@ -857,7 +857,7 @@ ptrans_list(lispobj thing, boolean constant) struct cons *old, *new, *orig; int length; - orig = newspace_alloc(0,constant); + orig = (struct cons *) newspace_alloc(0,constant); length = 0; do { diff --git a/version.lisp-expr b/version.lisp-expr index 0288866..4d67f25 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.8.9.14" +"0.8.9.15"