Changeset 1121 for Whitix

Show
Ignore:
Timestamp:
10/14/08 18:41:35 (1 month ago)
Author:
mwhitworth
Message:

| 7 now not necessary.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/keobject/user/posix/memory/mem.c

    r910 r1121  
    1111void* mmap(void* start, size_t length, int prot, int flags, int fd, off_t offset) 
    1212{ 
    13         unsigned long ret=SysMemoryMap((unsigned long)start, length, prot | 7, fd, offset, flags); 
     13        unsigned long ret=SysMemoryMap((unsigned long)start, length, prot, fd, offset, flags); 
    1414 
    1515        if (!ret)