]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix a typo in the mremap comment.
authorRoland McGrath <roland@hack.frob.com>
Mon, 11 Feb 2013 21:06:09 +0000 (13:06 -0800)
committerRoland McGrath <roland@hack.frob.com>
Mon, 11 Feb 2013 21:06:09 +0000 (13:06 -0800)
ChangeLog
misc/sys/mman.h

index d746367148523b61b1e32b56faa2a5f8c520281e..90710f71b83bfef2435794ae2d281203db3c06b1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-02-11  Roland McGrath  <roland@hack.frob.com>
+
+       * misc/sys/mman.h: Fix typo in mremap comment.
+
 2013-02-08  Roland McGrath  <roland@hack.frob.com>
 
        * manual/examples/mkfsock.c (make_named_socket): Don't add one for
index 065fd497df6fe8c6a79a1c6a293c0e29cf43eed1..70454a5bd47c332d6be94859cd2a9b01f6cd4e13 100644 (file)
@@ -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;