Changeset 14605


Ignore:
Timestamp:
Jan 26, 2011, 10:03:09 PM (14 years ago)
Author:
Gary Byers
Message:

Fix typos.

File:
1 edited

Legend:

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

    r14604 r14605  
    752752
    753753    p = (BytePtr)dlsym(lib,"DYNAMIC_HEAP_END");
    754     if (null p) {
     754    if (p == NULL) {
    755755      dlclose(lib);
    756756      return 0;
     
    763763    a = nilreg_area = new_area(q,q+8192,AREA_STATIC);
    764764    nilreg_area->active = nilreg_area->high; /* a little wrong */
    765     #ifdef PPC
     765#ifdef PPC
    766766#ifdef PPC64
    767         image_nil = ptr_to_lispobj(a->low + (1024*4) + sizeof(lispsymbol) + fulltag_misc);
     767    image_nil = ptr_to_lispobj(a->low + (1024*4) + sizeof(lispsymbol) + fulltag_misc);
    768768#else
    769         image_nil = (LispObj)(a->low + 8 + 8 + (1024*4) + fulltag_nil);
     769    image_nil = (LispObj)(a->low + 8 + 8 + (1024*4) + fulltag_nil);
    770770#endif
    771771#endif
    772772#ifdef X86
    773773#ifdef X8664
    774         image_nil = (LispObj)(a->low) + (1024*4) + fulltag_nil;
     774    image_nil = (LispObj)(a->low) + (1024*4) + fulltag_nil;
    775775#else
    776         image_nil = (LispObj)(a->low) + (1024*4) + fulltag_cons;
     776    image_nil = (LispObj)(a->low) + (1024*4) + fulltag_cons;
    777777#endif
    778778#endif
    779779#ifdef ARM
    780         image_nil = (LispObj)(a->low) + (1024*4) + fulltag_nil;
    781 #endif
    782         set_nil(image_nil);
     780    image_nil = (LispObj)(a->low) + (1024*4) + fulltag_nil;
     781#endif
     782    set_nil(image_nil);
     783     
    783784       
    784        
    785   }
     785 
    786786
    787787   
Note: See TracChangeset for help on using the changeset viewer.