From 1463d1005d1e4254d84e54ccf169c1e05f24ea79 Mon Sep 17 00:00:00 2001 From: Samuel Ortiz Date: Thu, 13 Jun 2013 16:18:23 +0200 Subject: [PATCH] nfctool: sniffer: A record's TNF is not a boolean A record TNF (Type Name Format) is on 3 bits and thus should not be the result of a boolean comparison. --- tools/nfctool/ndef-decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/nfctool/ndef-decode.c b/tools/nfctool/ndef-decode.c index f30d68c..8910f56 100644 --- a/tools/nfctool/ndef-decode.c +++ b/tools/nfctool/ndef-decode.c @@ -95,7 +95,7 @@ int ndef_print_records(guint8 *data, guint32 data_len) cf = (record[0] & 0x20) != 0; sr = (record[0] & 0x10) != 0; il = (record[0] & 0x08) != 0; - tnf = (record[0] & 0x07) != 0; + tnf = (record[0] & 0x07); type_len = record[1]; -- 2.7.4