From: Jonathan Wakely Date: Wed, 13 Nov 2024 14:43:58 +0000 (+0000) Subject: manual: Fix overeager s/int/size_t/ in memory.texi X-Git-Tag: glibc-2.41~494 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8d3fb43797389d780b19d27b9764beda60eaddbf;p=thirdparty%2Fglibc.git manual: Fix overeager s/int/size_t/ in memory.texi The change in e3960d1c57e57f33e0e846d615788f4ede73b945 should only have affected 'int' not 'internally'. Signed-off-by: Jonathan Wakely --- diff --git a/manual/memory.texi b/manual/memory.texi index a39805a8dd..324c1209be 100644 --- a/manual/memory.texi +++ b/manual/memory.texi @@ -1413,7 +1413,7 @@ This is the total size of memory allocated with @code{sbrk} by @item size_t ordblks This is the number of chunks not in use. (The memory allocator -size_ternally gets chunks of memory from the operating system, and then +internally gets chunks of memory from the operating system, and then carves them up to satisfy individual @code{malloc} requests; @pxref{The GNU Allocator}.)