From: skamkar <skamkar@ef4ab9da-24cd-11de-8aaa-f3a34680c41f>
Date: Wed, 8 Jul 2009 01:09:41 +0000 (+0000)
Subject: fix windows compile error and remove linux compile warnings
X-Git-Tag: v1.0.0~577
X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/8172fb35dd18116560c903b14c432394b1cdd06b?ds=sidebyside

fix windows compile error and remove linux compile warnings
---

diff --git a/winsrc/command.cpp b/winsrc/command.cpp
index c8fe40ea..b5d3e3d7 100644
--- a/winsrc/command.cpp
+++ b/winsrc/command.cpp
@@ -639,7 +639,6 @@ static void ChkBitstream(char *str)
 static void CmdLosim(char *str)
 {
 	int i;
-	char *zero = "0";
 
 	/* convert to bitstream if necessary */
 	ChkBitstream(str);
@@ -704,7 +703,7 @@ static void CmdLoCommandRead(char *str)
 	c.cmd = CMD_MOD_THEN_ACQUIRE_RAW_ADC_SAMPLES_125K;
 	sscanf(str, "%i %i %i %s %s", &c.ext1, &c.ext2, &c.ext3, &c.d.asBytes,&dummy+1);
 	// in case they specified 'h'
-	strcpy(&c.d.asBytes + strlen(c.d.asBytes),dummy);
+	strcpy((char *)&c.d.asBytes + strlen((char *)c.d.asBytes), dummy);
 	SendCommand(&c, FALSE);
 }
 
@@ -2027,8 +2026,7 @@ static void CmdFlexdemod(char *str)
 
 static void Cmdaskdemod(char *str) {
 	int i;
-	int n = 0;
-	int c,high,low = 0;
+	int c, high = 0, low = 0;
 
 	// TODO: complain if we do not give 2 arguments here !
 	sscanf(str, "%i", &c);