about summary refs log tree commit diff
path: root/misc
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2013-02-11 13:06:09 -0800
committerRoland McGrath <roland@hack.frob.com>2013-02-11 13:06:09 -0800
commit3a09b6208d9ac9ef1563be63c56a56f1f45e4909 (patch)
treecb4336535aff838c66fb5b28aecf0f4f4c8c0947 /misc
parentaea7a9b9d2f9482d174ab95881b132de8472a388 (diff)
downloadglibc-3a09b6208d9ac9ef1563be63c56a56f1f45e4909.tar.gz
glibc-3a09b6208d9ac9ef1563be63c56a56f1f45e4909.tar.xz
glibc-3a09b6208d9ac9ef1563be63c56a56f1f45e4909.zip
Fix a typo in the mremap comment.
Diffstat (limited to 'misc')
-rw-r--r--misc/sys/mman.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/sys/mman.h b/misc/sys/mman.h
index 065fd497df..70454a5bd4 100644
--- a/misc/sys/mman.h
+++ b/misc/sys/mman.h
@@ -128,7 +128,7 @@ extern int mincore (void *__start, size_t __len, unsigned char *__vec)
 /* Remap pages mapped by the range [ADDR,ADDR+OLD_LEN) to new length
    NEW_LEN.  If MREMAP_MAYMOVE is set in FLAGS the returned address
    may differ from ADDR.  If MREMAP_FIXED is set in FLAGS the function
-   takes another paramter which is a fixed address at which the block
+   takes another parameter which is a fixed address at which the block
    resides after a successful call.  */
 extern void *mremap (void *__addr, size_t __old_len, size_t __new_len,
 		     int __flags, ...) __THROW;