From 08a3775821afef3409764d6e1c9bbb35b0e01a59 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Mon, 10 Jun 2019 13:08:50 -0700 Subject: [PATCH] station: fix compiler error after bss_free change --- src/station.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/station.c b/src/station.c index d2e3b391..0cae47d0 100644 --- a/src/station.c +++ b/src/station.c @@ -200,9 +200,6 @@ static void station_add_autoconnect_bss(struct station *station, static void bss_free(void *data) { struct scan_bss *bss = data; - const char *addr; - - addr = util_address_to_string(bss->addr); scan_bss_free(bss); }