From 740b5b430d7bcfab92ddb605b85ea2e0a776fdf8 Mon Sep 17 00:00:00 2001 From: Romain Tartiere Date: Thu, 29 Jul 2010 10:53:14 +0000 Subject: [PATCH] libnfc-error-handling: Remove boring debug stuff. --- libnfc/chips/pn53x.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libnfc/chips/pn53x.c b/libnfc/chips/pn53x.c index 4e53fd0..d7b913e 100644 --- a/libnfc/chips/pn53x.c +++ b/libnfc/chips/pn53x.c @@ -77,9 +77,7 @@ bool pn53x_transceive(nfc_device_t* pnd, const byte_t* pbtTx, const size_t szTxL *pszRxLen = MAX_FRAME_LEN; // Call the tranceive callback function of the current device - printf ("Entering transceive (bsin = %lu, bsout = %lu)\n", szTxLen, *pszRxLen); if (!pnd->pdc->transceive(pnd->nds,pbtTx,szTxLen,pbtRx,pszRxLen)) return false; - printf ("Leaving transceive (bsin = %lu, bsout = %lu)\n", szTxLen, *pszRxLen); pnd->iErrorCode = pbtRx[0] & 0x3f;