Changeset 15011


Ignore:
Timestamp:
Oct 3, 2011, 6:53:20 PM (13 years ago)
Author:
Gary Byers
Message:

Fix prototype/declaration of allocate_dynamic_heap() in load_image_section()
(argument to allocate_dynamic_heap() should be a natural, not a 32-bit
unsigned int.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/lisp-kernel/image.c

    r14601 r15011  
    203203load_image_section(int fd, openmcl_image_section_header *sect)
    204204{
    205   extern area* allocate_dynamic_area(unsigned);
     205  extern area* allocate_dynamic_area(natural);
    206206  off_t
    207207    pos = seek_to_next_page(fd), advance;
Note: See TracChangeset for help on using the changeset viewer.