Skip to content

Commit

Permalink
Merge pull request #626 from aviallon/fix-typo-pcsc
Browse files Browse the repository at this point in the history
Fix typo in variable name in pcsc.c
  • Loading branch information
doegox committed Nov 2, 2020
2 parents b5180a6 + 3af2e14 commit 7ebf9b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libnfc/drivers/pcsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ static int pcsc_props_to_target(struct nfc_device *pnd, uint8_t it, const uint8_
uint8_t atqa[2];
pcsc_get_atqa(pnd, atqa, sizeof(atqa));
//ATQA Coding of NXP Contactless Card ICs
if(ataq[0] = 0x00 || atqa[0] == 0x03)
if(atqa[0] = 0x00 || atqa[0] == 0x03)
{
memcpy(pnt->nti.nai.abtAtqa,atqa,2);
}else {
Expand Down

0 comments on commit 7ebf9b9

Please sign in to comment.