diff options
Diffstat (limited to 'examples/parse_beacon/parse_beacon.c')
-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 | } |