From c2b0e3a0351e021dea9b61fe2f759570d3fedb70 Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Thu, 13 Nov 2025 14:25:21 +0900 Subject: [PATCH] Fix indentation issue Issue introduced by 84fb27511dbe. I have missed this diff while adding pgoff_t to the typedef list of pgindent, while addressing a separate indentation issue. Per buildfarm member koel. --- src/bin/pg_dump/pg_backup_archiver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/pg_backup_archiver.c b/src/bin/pg_dump/pg_backup_archiver.c index 59eaecb4ed7..c84b017f21b 100644 --- a/src/bin/pg_dump/pg_backup_archiver.c +++ b/src/bin/pg_dump/pg_backup_archiver.c @@ -2067,7 +2067,7 @@ WriteOffset(ArchiveHandle *AH, pgoff_t o, int wasSet) } int -ReadOffset(ArchiveHandle *AH, pgoff_t * o) +ReadOffset(ArchiveHandle *AH, pgoff_t *o) { int i; int off;