From 92c1f0df7ab549d69815a0867cc0db8989c75c0b Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Sat, 3 Apr 2004 18:36:25 +0000 Subject: [PATCH] 0.8.9.15: Add (struct cons *) cast needed (observation from Perry Metzger) --- src/runtime/purify.c | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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" -- 1.7.10.4