0.8.9.15:
authorChristophe Rhodes <csr21@cam.ac.uk>
Sat, 3 Apr 2004 18:36:25 +0000 (18:36 +0000)
committerChristophe Rhodes <csr21@cam.ac.uk>
Sat, 3 Apr 2004 18:36:25 +0000 (18:36 +0000)
Add (struct cons *) cast needed (observation from Perry Metzger)

src/runtime/purify.c
version.lisp-expr

index f64e290..8f7a44e 100644 (file)
@@ -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 {
index 0288866..4d67f25 100644 (file)
@@ -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"