From d34a0b0cc7034ecca76a7331854db44f07a60da7 Mon Sep 17 00:00:00 2001
From: iceman1001 <iceman@iuse.se>
Date: Mon, 2 May 2016 15:15:06 +0200
Subject: [PATCH] FIX: dual definitions of variable size

---
 client/cmdlfnedap.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/client/cmdlfnedap.c b/client/cmdlfnedap.c
index f15813f10..048c5eea9 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){