From 40672ed62b36f0d075114d01fb561abdc1389850 Mon Sep 17 00:00:00 2001 From: Peter Meerwald Date: Sat, 6 Jul 2013 23:17:14 +0200 Subject: [PATCH] pn532: fix typo in comment Signed-off-by: Peter Meerwald --- libnfc/chips/pn53x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnfc/chips/pn53x.c b/libnfc/chips/pn53x.c index 46b4d98a..e89f4e5d 100644 --- a/libnfc/chips/pn53x.c +++ b/libnfc/chips/pn53x.c @@ -3170,7 +3170,7 @@ pn53x_current_target_is(const struct nfc_device *pnd, const nfc_target *pnt) if ((CHIP_DATA(pnd)->current_target == NULL) || (pnt == NULL)) { return false; } - // XXX It will not work if t is not binary-equal to current target + // XXX It will not work if it is not binary-equal to current target if (0 != memcmp(pnt, CHIP_DATA(pnd)->current_target, sizeof(nfc_target))) { return false; }