pgsql: Standardize type of extend_by counter

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Standardize type of extend_by counter
Date: 2023-09-19 07:51:19
Message-ID: E1qiVVv-004ihC-9c@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Standardize type of extend_by counter

The counter of extend_by loops is mixed int and uint32. Fix by
standardizing from int to uint32, to match the extend_by variable.

Fixup for 31966b151e.

Author: Ranier Vilela <ranier(dot)vf(at)gmail(dot)com>
Reviewed-by: Gurjeet Singh <gurjeet(at)singh(dot)im>
Reviewed-by: Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com>
Discussion: https://www.postgresql.org/message-id/flat/CAEudQAqHG-JP-YnG54ftL_b7v6-57rMKwET_MSvEoen0UHuPig(at)mail(dot)gmail(dot)com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9847ca2c79bef27b9bab44b2243fe951b7c62b36

Modified Files
--------------
src/backend/storage/buffer/bufmgr.c | 6 +++---
src/backend/storage/buffer/localbuf.c | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Heikki Linnakangas 2023-09-19 08:57:49 pgsql: Fix GiST README's explanation of the NSN cross-check.
Previous Message Michael Paquier 2023-09-19 01:24:38 pgsql: Improve error message for snapshot import in snapmgr.c, take two