Fix x86-64 build (dodgy assertion, no real bug).
/* Compute the number of pages needed for the dynamic space.
* Dynamic space size should be aligned on page size. */
page_table_pages = dynamic_space_size/PAGE_BYTES;
- gc_assert(dynamic_space_size == page_table_pages*PAGE_BYTES);
+ gc_assert(dynamic_space_size == (size_t) page_table_pages*PAGE_BYTES);
page_table = calloc(page_table_pages, sizeof(struct page));
gc_assert(page_table);
;;; 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.9.18.29"
+"0.9.18.30"