From 6d66866268890c1ebce3892d2dc6b287c0e5da0a Mon Sep 17 00:00:00 2001 From: Romain Tartiere Date: Wed, 18 May 2011 18:53:00 +0000 Subject: [PATCH] Silent down the compiler. --- examples/nfc-utils.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/nfc-utils.c b/examples/nfc-utils.c index bcb5a69..98e7065 100644 --- a/examples/nfc-utils.c +++ b/examples/nfc-utils.c @@ -634,6 +634,7 @@ print_nfc_iso14443bi_info (const nfc_iso14443bi_info_t nii, bool verbose) void print_nfc_iso14443b2sr_info (const nfc_iso14443b2sr_info_t nsi, bool verbose) { + (void) verbose; printf (" UID: "); print_hex (nsi.abtUID, 8); } @@ -641,6 +642,7 @@ print_nfc_iso14443b2sr_info (const nfc_iso14443b2sr_info_t nsi, bool verbose) void print_nfc_iso14443b2ct_info (const nfc_iso14443b2ct_info_t nci, bool verbose) { + (void) verbose; uint32_t uid; uid = (nci.abtUID[3] << 24) + (nci.abtUID[2] << 16) + (nci.abtUID[1] << 8) + nci.abtUID[0]; printf (" UID: ");