diff options
author | Nathan Bossart <nathan@postgresql.org> | 2025-09-19 09:19:03 -0500 |
---|---|---|
committer | Nathan Bossart <nathan@postgresql.org> | 2025-09-19 09:19:03 -0500 |
commit | 18cdf5932a279a2c035d44460e1e0cbb659471f2 (patch) | |
tree | 4d452605cc522da8434f94bc594d08bfbd776f08 /src/include/utils/memutils.h | |
parent | ac7c8e412cc5606ab43f641285400209a686bac8 (diff) |
Fix obsolete references to postgres.h in comments.
Oversights in commits d08741eab5 and d952373a98.
Reviewed-by: Chao Li <li.evan.chao@gmail.com>
Discussion: https://postgr.es/m/aMxbfSJ2wLWd32x-%40nathan
Diffstat (limited to 'src/include/utils/memutils.h')
-rw-r--r-- | src/include/utils/memutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/utils/memutils.h b/src/include/utils/memutils.h index 8abc26abce2..7bbe5a36959 100644 --- a/src/include/utils/memutils.h +++ b/src/include/utils/memutils.h @@ -30,7 +30,7 @@ * * palloc() enforces MaxAllocSize, chosen to correspond to the limiting size * of varlena objects under TOAST. See VARSIZE_4B() and related macros in - * postgres.h. Many datatypes assume that any allocatable size can be + * varatt.h. Many datatypes assume that any allocatable size can be * represented in a varlena header. This limit also permits a caller to use * an "int" variable for an index into or length of an allocation. Callers * careful to avoid these hazards can access the higher limit with |