(libnfc-less-bitutils-more-ponies) MFT

This commit is contained in:
Romain Tartiere 2010-04-17 13:45:00 +00:00
commit 204130477e
3 changed files with 5 additions and 5 deletions

View file

@ -165,7 +165,7 @@ acr122_list_devices(nfc_device_desc_t pnddDevices[], size_t szDevices, size_t *p
while ((acDeviceNames[szPos] != '\0') && ((*pszDeviceFound) < szDevices)) { while ((acDeviceNames[szPos] != '\0') && ((*pszDeviceFound) < szDevices)) {
uiBusIndex++; uiBusIndex++;
DBG("- %s (pos=%d)", acDeviceNames + szPos, szPos); DBG("- %s (pos=%ld)", acDeviceNames + szPos, (unsigned long) szPos);
bSupported = false; bSupported = false;
for (i = 0; supported_devices[i] && !bSupported; i++) { for (i = 0; supported_devices[i] && !bSupported; i++) {

View file

@ -140,14 +140,14 @@ bool pn53x_usb_list_devices(nfc_device_desc_t pnddDevices[], size_t szDevices, s
// Test if we reach the maximum "wanted" devices // Test if we reach the maximum "wanted" devices
if((*pszDeviceFound) == szDevices) if((*pszDeviceFound) == szDevices)
{ {
DBG("Found %d devices",*pszDeviceFound); DBG("Found %ld devices", (unsigned long) *pszDeviceFound);
return true; return true;
} }
} }
} }
} }
} }
DBG("Found %d devices",*pszDeviceFound); DBG("Found %ld devices", (unsigned long) *pszDeviceFound);
if(*pszDeviceFound) if(*pszDeviceFound)
return true; return true;
return false; return false;

View file

@ -113,7 +113,7 @@ nfc_list_devices(nfc_device_desc_t pnddDevices[], size_t szDevices, size_t *pszD
if (drivers_callbacks_list[uiDriver].list_devices (pnddDevices + (*pszDeviceFound), szDevices - (*pszDeviceFound), &szN)) if (drivers_callbacks_list[uiDriver].list_devices (pnddDevices + (*pszDeviceFound), szDevices - (*pszDeviceFound), &szN))
{ {
*pszDeviceFound += szN; *pszDeviceFound += szN;
DBG("%d device(s) found using %s driver", szN, drivers_callbacks_list[uiDriver].acDriver); DBG("%ld device(s) found using %s driver", (unsigned long) szN, drivers_callbacks_list[uiDriver].acDriver);
} }
} }
else else
@ -613,7 +613,7 @@ nfc_initiator_poll_targets(const nfc_device_t* pnd,
res = pnd->pdc->transceive(pnd->nds, pbtTxInAutoPoll, szTxInAutoPoll, abtRx, &szRxLen); res = pnd->pdc->transceive(pnd->nds, pbtTxInAutoPoll, szTxInAutoPoll, abtRx, &szRxLen);
if((szRxLen == 0)||(res == false)) { if((szRxLen == 0)||(res == false)) {
DBG("pnd->pdc->tranceive() failed: szRxLen=%d, res=%d", szRxLen, res); DBG("pnd->pdc->tranceive() failed: szRxLen=%ld, res=%d", (unsigned long) szRxLen, res);
return false; return false;
} else { } else {
*pszTargetFound = abtRx[0]; *pszTargetFound = abtRx[0];