From 9f7565c6c2d45df9705556c60f41394a8356cdf9 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 23 Dec 2025 21:38:43 -0500 Subject: [PATCH] Fix another case of indirectly casting away const. This one was missed in 8f1791c61, because the machines that detected those issues don't compile this function. Author: Bertrand Drouvot Reviewed-by: Tom Lane Discussion: https://postgr.es/m/1324889.1764886170@sss.pgh.pa.us --- src/port/getopt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/port/getopt.c b/src/port/getopt.c index 655fef3b0c7..2cca5a0673a 100644 --- a/src/port/getopt.c +++ b/src/port/getopt.c @@ -72,7 +72,7 @@ int getopt(int nargc, char *const *nargv, const char *ostr) { static char *place = EMSG; /* option letter processing */ - char *oli; /* option letter list index */ + const char *oli; /* option letter list index */ if (!*place) { /* update scanning pointer */