X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/709a8d3ff0f7991425dd2600f057acbd8019616a..1e1b3030933e49358d49a0d10a8792d95e672f11:/client/prox.c diff --git a/client/prox.c b/client/prox.c index 58704494..94343ff0 100644 --- a/client/prox.c +++ b/client/prox.c @@ -225,7 +225,7 @@ void WaitForAck(void) { } } -static DWORD ExpectedAddr; +static unsigned int ExpectedAddr; static BYTE QueuedToSend[256]; static BOOL AllWritten; #define PHYSICAL_FLASH_START 0x100000 @@ -336,7 +336,7 @@ static void LoadFlashFromSRecords(const char *file, int start_addr, int end_addr char addrStr[9]; memcpy(addrStr, s, 8); addrStr[8] = '\0'; - DWORD addr; + unsigned int addr; sscanf(addrStr, "%x", &addr); s += 8;