Fix some warnings in test.

This commit is contained in:
Audrey Diacre
2011-11-24 11:12:01 +00:00
parent 784a2f86a2
commit 9e67423cff
4 changed files with 5 additions and 5 deletions

View File

@@ -33,8 +33,8 @@ cut_setup (void)
cut_omit ("At least two NFC devices must be plugged-in to run this test");
}
devices[TARGET] = nfc_connect (&connstrings[TARGET]);
devices[INITIATOR] = nfc_connect (&connstrings[INITIATOR]);
devices[TARGET] = nfc_connect (connstrings[TARGET]);
devices[INITIATOR] = nfc_connect (connstrings[INITIATOR]);
signal (SIGINT, abort_test_by_keypress);
}