diff options
| author | Andre Heider | 2022-11-26 15:15:16 +0000 |
|---|---|---|
| committer | Jo-Philipp Wich | 2022-12-15 23:21:56 +0000 |
| commit | 6c5e9003947a906611f814cb5204918d7bd3a85f (patch) | |
| tree | 8fb5bb8962f0bc8055e8beec3c22763b644a49c9 | |
| parent | 8c852b656bf1622dee1ae2cfa4c083f730c1c539 (diff) | |
| download | rpcd-6c5e9003947a906611f814cb5204918d7bd3a85f.tar.gz | |
iwinfo: constify string map arg for rpc_iwinfo_call_int()
Fixes the build since the string maps have been constified.
| -rw-r--r-- | iwinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |