Skip to content
Snippets Groups Projects
Unverified Commit 8b8ba9fb 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")
(cherry picked from commit 17123aa4)
parent 882fbab6
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 ...@@ -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(); struct uci_context *ctx = uci_alloc_context();
if (!ctx) if (!ctx)
return; 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