From: iceman1001 Date: Mon, 2 May 2016 13:15:06 +0000 (+0200) Subject: FIX: dual definitions of variable size X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/d34a0b0cc7034ecca76a7331854db44f07a60da7?ds=sidebyside FIX: dual definitions of variable size --- diff --git a/client/cmdlfnedap.c b/client/cmdlfnedap.c index f15813f1..048c5eea 100644 --- a/client/cmdlfnedap.c +++ b/client/cmdlfnedap.c @@ -83,7 +83,8 @@ int CmdFSKdemodNedap(const char *Cmd) { if (g_debugMode) PrintAndLog("Error NEDAP: ASKbiphaseDemod failed"); return 0; } - size_t size = DemodBufferLen; + + size = DemodBufferLen; int idx = NedapDemod(BitStream, &size); if (idx < 0){