diff options
author | Marc <foxtrot@malloc.me> | 2022-01-09 17:37:09 +0000 |
---|---|---|
committer | Marc <foxtrot@malloc.me> | 2022-01-09 17:37:09 +0000 |
commit | dc2a67bda3a104a9d3ef9857f5c5ba7057c3ae27 (patch) | |
tree | a2b9013869cd2503f2ebeb41524e7b47830e218f | |
parent | e416d618485cb842d1d3c5485b3e3252017713fd (diff) | |
download | libwifi-dc2a67bda3a104a9d3ef9857f5c5ba7057c3ae27.tar.gz libwifi-dc2a67bda3a104a9d3ef9857f5c5ba7057c3ae27.tar.bz2 libwifi-dc2a67bda3a104a9d3ef9857f5c5ba7057c3ae27.zip |
examples: Minor style fix for beacon parser
-rw-r--r-- | examples/parse_beacon/parse_beacon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/parse_beacon/parse_beacon.c b/examples/parse_beacon/parse_beacon.c index bd3810c..47fdbb0 100644 --- a/examples/parse_beacon/parse_beacon.c +++ b/examples/parse_beacon/parse_beacon.c | |||
@@ -24,7 +24,7 @@ int print_tag_info(unsigned char *tag_data, size_t tag_data_len) { | |||
24 | if (it.tag_header->tag_len < 16) { | 24 | if (it.tag_header->tag_len < 16) { |
25 | max_size = it.tag_header->tag_len; | 25 | max_size = it.tag_header->tag_len; |
26 | } | 26 | } |
27 | printf("\t%d bytes of Tag Data: ", max_size); | 27 | printf("\t\t%d bytes of Tag Data: ", max_size); |
28 | for (size_t i = 0; i < max_size; i++) { | 28 | for (size_t i = 0; i < max_size; i++) { |
29 | printf("%02x ", it.tag_data[i]); | 29 | printf("%02x ", it.tag_data[i]); |
30 | } | 30 | } |