Merge pull request #306 from Mincka/master
Fix nfc-poll card removing check
This commit is contained in:
commit
c55bbec50d
1 changed files with 4 additions and 5 deletions
|
@ -145,15 +145,14 @@ main(int argc, const char *argv[])
|
|||
|
||||
if (res > 0) {
|
||||
print_nfc_target(&nt, verbose);
|
||||
printf("Waiting for card removing...");
|
||||
while (0 == nfc_initiator_target_is_present(pnd, NULL)) {}
|
||||
nfc_perror(pnd, "nfc_initiator_target_is_present");
|
||||
printf("done.\n");
|
||||
} else {
|
||||
printf("No target found.\n");
|
||||
}
|
||||
|
||||
printf("Waiting for card removing...");
|
||||
while (0 == nfc_initiator_target_is_present(pnd, NULL)) {}
|
||||
nfc_perror(pnd, "nfc_initiator_target_is_present");
|
||||
printf("done.\n");
|
||||
|
||||
nfc_close(pnd);
|
||||
nfc_exit(context);
|
||||
exit(EXIT_SUCCESS);
|
||||
|
|
Loading…
Reference in a new issue