]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
manual: fix order of arguments of memalign and aligned_alloc (Bug 27547)
authorDennis Brendel <dbrendel@redhat.com>
Mon, 15 Jan 2024 08:55:37 +0000 (09:55 +0100)
committerCarlos O'Donell <carlos@redhat.com>
Wed, 24 Jan 2024 17:10:38 +0000 (12:10 -0500)
On the summary page the order of the function arguments was reversed, but it is
in correct order in the other places of the manual.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
manual/memory.texi

index fb875f4c3cfcc62580417170bc3b98768484661f..3710d7ec667519ccd72debd5bbce06fd0ab4444c 100644 (file)
@@ -1502,7 +1502,7 @@ Space}.
 Allocate a block of @var{size} bytes, starting on a page boundary.
 @xref{Aligned Memory Blocks}.
 
-@item void *aligned_alloc (size_t @var{size}, size_t @var{alignment})
+@item void *aligned_alloc (size_t @var{alignment}, size_t @var{size})
 Allocate a block of @var{size} bytes, starting on an address that is a
 multiple of @var{alignment}.  @xref{Aligned Memory Blocks}.
 
@@ -1510,7 +1510,7 @@ multiple of @var{alignment}.  @xref{Aligned Memory Blocks}.
 Allocate a block of @var{size} bytes, starting on an address that is a
 multiple of @var{alignment}.  @xref{Aligned Memory Blocks}.
 
-@item void *memalign (size_t @var{size}, size_t @var{boundary})
+@item void *memalign (size_t @var{boundary}, size_t @var{size})
 Allocate a block of @var{size} bytes, starting on an address that is a
 multiple of @var{boundary}.  @xref{Aligned Memory Blocks}.