From 6cbb7f0dbbdd684aa92b8014fade5835624cea1f Mon Sep 17 00:00:00 2001 From: Collin Funk Date: Sun, 16 Nov 2025 16:59:43 -0800 Subject: [PATCH] maint: convert remove a K&R declaration This function is hidden unless EVAL_TRACE is defined for debugging. * src/expr.c (trace): Convert to a prototype instead of K&R definition to avoid -Werror=strict-prototypes. Make the argument const to avoid -Werror=discarded-qualifiers. --- src/expr.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/expr.c b/src/expr.c index 17a1ddd299..980f8e5188 100644 --- a/src/expr.c +++ b/src/expr.c @@ -552,8 +552,7 @@ require_more_args (void) /* Print evaluation trace and args remaining. */ static void -trace (fxn) - char *fxn; +trace (char const *fxn) { char **a; -- 2.47.3