From 8d3fb43797389d780b19d27b9764beda60eaddbf Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Wed, 13 Nov 2024 14:43:58 +0000 Subject: [PATCH] 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 --- manual/memory.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}.)