From e0c01fca015d1fe55a07a3434112580406b27a98 Mon Sep 17 00:00:00 2001 From: Roel Verdult Date: Tue, 28 Sep 2010 16:18:05 +0000 Subject: [PATCH] commented nfcip lines --- examples/nfcip-target.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/nfcip-target.c b/examples/nfcip-target.c index a8456f3..d5cd718 100644 --- a/examples/nfcip-target.c +++ b/examples/nfcip-target.c @@ -44,10 +44,10 @@ main (int argc, const char *argv[]) #define MAX_DEVICE_COUNT 2 nfc_device_desc_t pnddDevices[MAX_DEVICE_COUNT]; nfc_list_devices (pnddDevices, MAX_DEVICE_COUNT, &szDeviceFound); - # Little hack to allow using nfcip-initiator & nfcip-target from - # the same machine: if there is more than one readers connected - # nfcip-target will connect to the second reader - # (we hope they're always detected in the same order) + //# Little hack to allow using nfcip-initiator & nfcip-target from + //# the same machine: if there is more than one readers connected + //# nfcip-target will connect to the second reader + //# (we hope they're always detected in the same order) if (szDeviceFound == 1) { pnd = nfc_connect (&(pnddDevices[0])); }