From cbe0f1f1e9684586d7b75b1e5d47ff61604dd3e6 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 14 Jun 2026 09:50:31 +0100 Subject: [PATCH] Another const from Jere Viikari. --- compat/getopt_long.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat/getopt_long.c b/compat/getopt_long.c index 3d4df3fc..fdbcc86f 100644 --- a/compat/getopt_long.c +++ b/compat/getopt_long.c @@ -339,7 +339,7 @@ static int getopt_internal(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx, int flags) { - char *oli; /* option letter list index */ + const char *oli; /* option letter list index */ int optchar, short_too; static int posixly_correct = -1;