summaryrefslogtreecommitdiff
path: root/rts
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2013-02-02 03:39:40 +0100
committerGabor Greif <ggreif@gmail.com>2013-02-02 03:52:59 +0100
commit7d6fece2e7c1e98928b939dc483522d79fe6b7d6 (patch)
treef1d68f7a927eff41f7f6f14193e2bd55719200fa /rts
parenta06684446edc7fa6f63fa897fc0dffb746431238 (diff)
downloadhaskell-7d6fece2e7c1e98928b939dc483522d79fe6b7d6.tar.gz
some more typos
Diffstat (limited to 'rts')
-rw-r--r--rts/posix/OSMem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/posix/OSMem.c b/rts/posix/OSMem.c
index 2237972837..26aebc2b44 100644
--- a/rts/posix/OSMem.c
+++ b/rts/posix/OSMem.c
@@ -99,7 +99,7 @@ my_mmap (void *addr, W_ size)
kern_return_t err = 0;
ret = addr;
- if(addr) // try to allocate at adress
+ if(addr) // try to allocate at address
err = vm_allocate(mach_task_self(),(vm_address_t*) &ret, size, FALSE);
if(!addr || err) // try to allocate anywhere
err = vm_allocate(mach_task_self(),(vm_address_t*) &ret, size, TRUE);