From 0b9fe52b2bedb5a4b99c812134b6d7eda9c5f857 Mon Sep 17 00:00:00 2001 From: Peter Meerwald Date: Sat, 6 Jul 2013 22:32:45 +0200 Subject: [PATCH] pn53x: fix logging, timeout value 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 4dfe8f8..46b4d98 100644 --- a/libnfc/chips/pn53x.c +++ b/libnfc/chips/pn53x.c @@ -164,7 +164,7 @@ pn53x_transceive(struct nfc_device *pnd, const uint8_t *pbtTx, const size_t szTx PNCMD_TRACE(pbtTx[0]); if (timeout > 0) { - log_put(LOG_GROUP, LOG_CATEGORY, NFC_LOG_PRIORITY_DEBUG, "Timeout values: %d", timeout); + log_put(LOG_GROUP, LOG_CATEGORY, NFC_LOG_PRIORITY_DEBUG, "Timeout value: %d", timeout); } else if (timeout == 0) { log_put(LOG_GROUP, LOG_CATEGORY, NFC_LOG_PRIORITY_DEBUG, "%s", "No timeout"); } else if (timeout == -1) {