From a63fe4566232abc1e1894220e7cb8cf344aef0c6 Mon Sep 17 00:00:00 2001 From: PolynomialDivision Date: Tue, 25 Jul 2017 20:40:44 +0200 Subject: [PATCH] Remove target from printf --- src/storage/datastorage.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/storage/datastorage.c b/src/storage/datastorage.c index 79d1700..c0c6424 100644 --- a/src/storage/datastorage.c +++ b/src/storage/datastorage.c @@ -715,9 +715,9 @@ void print_probe_entry(probe_entry entry) { sprintf(mac_buf_target, "%x:%x:%x:%x:%x:%x", MAC2STR(entry.target_addr)); printf( - "bssid_addr: %s, client_addr: %s, target_addr: %s, signal: %d, freq: " + "bssid_addr: %s, client_addr: %s, signal: %d, freq: " "%d, ht: %d, vht: %d, counter: %d\n", - mac_buf_ap, mac_buf_client, mac_buf_target, entry.signal, entry.freq, entry.ht_support, entry.vht_support, + mac_buf_ap, mac_buf_client, entry.signal, entry.freq, entry.ht_support, entry.vht_support, entry.counter); }