diff --git a/src/storage/datastorage.c b/src/storage/datastorage.c index 62a6efc..eb65bb4 100644 --- a/src/storage/datastorage.c +++ b/src/storage/datastorage.c @@ -98,7 +98,7 @@ void send_beacon_reports(uint8_t bssid[], int id) { } } - // Go threw clients + // Go through clients int j; for (j = i; j <= client_entry_last; j++) { if (!mac_is_equal(client_array[j].bssid_addr, bssid)) { @@ -477,7 +477,7 @@ void kick_clients(uint8_t bssid[], uint32_t id) { } } - // Go threw clients + // Go through clients int j; for (j = i; j <= client_entry_last; j++) { if (!mac_is_equal(client_array[j].bssid_addr, bssid)) {