From f0cdc0d2fe207411a5ef039ea6afac089b7a0f3c Mon Sep 17 00:00:00 2001 From: "Chao Li (Evan)" Date: Tue, 14 Oct 2025 05:19:55 +0800 Subject: [PATCH v1] Fixed a typo in comment in compress_lz4.c Replaced "iff" with "if" in the function comment of LZ4Stream_eof(). Author: Chao Li --- src/bin/pg_dump/compress_lz4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/compress_lz4.c b/src/bin/pg_dump/compress_lz4.c index b817a083d38..585f360f48d 100644 --- a/src/bin/pg_dump/compress_lz4.c +++ b/src/bin/pg_dump/compress_lz4.c @@ -318,7 +318,7 @@ InitCompressorLZ4(CompressorState *cs, const pg_compress_specification compressi /* - * LZ4 equivalent to feof() or gzeof(). Return true iff there is no + * LZ4 equivalent to feof() or gzeof(). Return true if there is no * more buffered data and the end of the input file has been reached. */ static bool -- 2.39.5 (Apple Git-154)