Skip to content
Snippets Groups Projects
Unverified Commit 17123aa4 authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-respondd: fix count_stations() arguments

Fixes warnings about implicit pointer-to-int and int-to-pointer casts.

Fixes: 59a4cd63 ("gluon-respondd: expose OWE clients in nodeinfo")
parent 52ee93f1
No related branches found
No related tags found
No related merge requests found
......@@ -239,7 +239,7 @@ static void count_iface_stations(size_t *wifi24, size_t *wifi5, const char *ifna
}
}
static void count_stations(size_t *wifi24, size_t *wifi5, size_t *owe24, size_t owe5) {
static void count_stations(size_t *wifi24, size_t *wifi5, size_t *owe24, size_t *owe5) {
struct uci_context *ctx = uci_alloc_context();
if (!ctx)
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment