mirror of
https://github.com/nfc-tools/libnfc.git
synced 2026-03-12 02:23:47 +00:00
fixed printf warning
This commit is contained in:
@@ -102,7 +102,7 @@ bool print_hex_fd4 (const byte_t * pbtData, const size_t szBytes, const char * p
|
|||||||
if (szBytes > MAX_FRAME_LEN) {
|
if (szBytes > MAX_FRAME_LEN) {
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
if (fprintf (fd4, "#%s %04x: ", pchPrefix, szBytes)<0) {
|
if (fprintf (fd4, "#%s %04zx: ", pchPrefix, szBytes)<0) {
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user