NFC: Fix typo in the struct name (#683)

This commit is contained in:
Anna Prosvetova
2021-09-01 02:07:53 +03:00
committed by GitHub
parent 433025b5c7
commit 3ed26e61eb
11 changed files with 15 additions and 15 deletions

View File

@@ -34,7 +34,7 @@ typedef struct {
uint8_t sak;
NfcDeviceType device;
NfcProtocol protocol;
} NfcDeviceCommomData;
} NfcDeviceCommonData;
typedef struct {
char name[32];
@@ -48,7 +48,7 @@ typedef struct {
} NfcEmvData;
typedef struct {
NfcDeviceCommomData nfc_data;
NfcDeviceCommonData nfc_data;
union {
NfcEmvData emv_data;
MifareUlData mf_ul_data;