Hi, I noticed two headers are not in alphabetical order in pg_checkums.c, patch attached.
Michael
>From e4d6d6503b4c14685424c6a04c5eb2ae29024bf6 Mon Sep 17 00:00:00 2001 From: Michael Banck <michael.ba...@credativ.de> Date: Fri, 20 Sep 2024 19:17:43 +0200 Subject: [PATCH] Reorder headers in pg_checkums.c in alphabetical order --- src/bin/pg_checksums/pg_checksums.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_checksums/pg_checksums.c b/src/bin/pg_checksums/pg_checksums.c index 68a68eb0fa..f5f7ff1045 100644 --- a/src/bin/pg_checksums/pg_checksums.c +++ b/src/bin/pg_checksums/pg_checksums.c @@ -16,8 +16,8 @@ #include <dirent.h> #include <limits.h> -#include <time.h> #include <sys/stat.h> +#include <time.h> #include <unistd.h> #include "common/controldata_utils.h" -- 2.39.2