summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordp111 <[email protected]>2024-09-03 20:32:23 +0100
committerdp111 <[email protected]>2024-09-03 20:32:23 +0100
commit6935c663094bbba58e03c7820f4c2893fbce61a1 (patch)
tree335d9e07c735e855ab7b7508bce56bd283909cc4
parentfc07df320bf20ed5b3d78ad181d8af1533e12c12 (diff)
Make function parameter definitions match function prototypes ( found with cppcheck)
-rw-r--r--lib/networking/dhserver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/networking/dhserver.h b/lib/networking/dhserver.h
index b0d57ac4e..6a443b220 100644
--- a/lib/networking/dhserver.h
+++ b/lib/networking/dhserver.h
@@ -59,7 +59,7 @@ typedef struct dhcp_config
#ifdef __cplusplus
extern "C" {
#endif
-err_t dhserv_init(const dhcp_config_t *config);
+err_t dhserv_init(const dhcp_config_t *c);
void dhserv_free(void);
#ifdef __cplusplus
}