From 2b96c9f3c559df8e20b9d5258300b9d29692ccaf Mon Sep 17 00:00:00 2001 From: rocco8620 Date: Sun, 3 Sep 2017 21:53:17 +0200 Subject: [PATCH] Wrong variable names Wrong variable names (missing dots) on line 269, 270, 271 --- examples/nfc-emulate-tag.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/nfc-emulate-tag.c b/examples/nfc-emulate-tag.c index 3192095..a2adbe6 100644 --- a/examples/nfc-emulate-tag.c +++ b/examples/nfc-emulate-tag.c @@ -266,9 +266,9 @@ main(int argc, char *argv[]) }, .nti = { .nai = { - abtAtqa = { 0x03, 0x44 }, - abtUid = { 0x08, 0xab, 0xcd, 0xef }, - btSak = 0x20, + .abtAtqa = { 0x03, 0x44 }, + .abtUid = { 0x08, 0xab, 0xcd, 0xef }, + .btSak = 0x20, .szUidLen = 4, .abtAts = { 0x75, 0x77, 0x81, 0x02, 0x80 }, .szAtsLen = 5,