From 6c5e9003947a906611f814cb5204918d7bd3a85f Mon Sep 17 00:00:00 2001 From: Andre Heider Date: Sat, 26 Nov 2022 16:15:16 +0100 Subject: [PATCH] iwinfo: constify string map arg for rpc_iwinfo_call_int() Fixes the build since the string maps have been constified. --- iwinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iwinfo.c b/iwinfo.c index 38484c8..a4d8ec6 100644 --- a/iwinfo.c +++ b/iwinfo.c @@ -96,7 +96,7 @@ rpc_iwinfo_close(void) static void rpc_iwinfo_call_int(const char *name, int (*func)(const char *, int *), - const char **map) + const char * const *map) { int rv; -- 2.30.2