From dc2a67bda3a104a9d3ef9857f5c5ba7057c3ae27 Mon Sep 17 00:00:00 2001 From: Marc Date: Sun, 9 Jan 2022 17:37:09 +0000 Subject: examples: Minor style fix for beacon parser --- examples/parse_beacon/parse_beacon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/parse_beacon/parse_beacon.c') 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) { if (it.tag_header->tag_len < 16) { max_size = it.tag_header->tag_len; } - printf("\t%d bytes of Tag Data: ", max_size); + printf("\t\t%d bytes of Tag Data: ", max_size); for (size_t i = 0; i < max_size; i++) { printf("%02x ", it.tag_data[i]); } -- cgit 1.4.1