From c23d2618ba93343a3c894d824a2b271135c106d3 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 3 Aug 2016 00:51:26 +0200 Subject: [PATCH] FIX: mental note to self, don't code when tried. "size" should have been "sizeof". I need to fix my build for armsrc again. --- armsrc/iso14443b.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armsrc/iso14443b.c b/armsrc/iso14443b.c index cccf0dd6..e89c3bec 100644 --- a/armsrc/iso14443b.c +++ b/armsrc/iso14443b.c @@ -556,7 +556,7 @@ void SimulateIso14443bTag(uint32_t pupi) { // ...PUPI/UID supplied from user. Adjust ATQB response accordingly if ( pupi > 0 ) { - uint8_t len = size(respATQB); + uint8_t len = sizeof(respATQB); num_to_bytes(pupi, 4, respATQB+1); ComputeCrc14443(CRC_14443_B, respATQB, 12, &respATQB[len-2], &respATQB[len-1]); } -- 2.39.5