Properly print signed and unsigned integers. This fixes warnings like:
In file included from plugins/nfctype3.c:36:
plugins/nfctype3.c: In function ‘data_recv’:
./include/near/log.h:45:14: error: format ‘%zd’ expects argument of type ‘signed
size_t’, but argument 4 has type ‘size_t’ {aka ‘long unsigned int’} [-Werror=format=]
45 | near_debug("%s:%s() " fmt, \
| ^~~~~~~~~~
plugins/nfctype3.c:249:3: note: in expansion of macro ‘DBG’
249 | DBG("Done reading %zd bytes at %p", data_length, nfc_data);
| ^~~
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski(a)canonical.com>
---
plugins/nfctype3.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/nfctype3.c b/plugins/nfctype3.c
index d4fbed0dfc2f..c0502f15d9f2 100644
--- a/plugins/nfctype3.c
+++ b/plugins/nfctype3.c
@@ -246,7 +246,7 @@ static int data_recv(uint8_t *resp, int length, void *data)
tag->current_block = 0;
- DBG("Done reading %zd bytes at %p", data_length, nfc_data);
+ DBG("Done reading %zu bytes at %p", data_length, nfc_data);
records = near_ndef_parse_msg(nfc_data, data_length, NULL);
near_tag_add_records(tag->tag, records, tag->cb, 0);
--
2.27.0