]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/cmdhfepa.c
fixed stupid 64-bit formatting for x86/amd64 and unix/windows - part3
[proxmark3-svn] / client / cmdhfepa.c
index 6588c393b618272a35667bdc31428e0fe13a07e6..a89c448a737766e4c50afe3d3540ad4cac034bf2 100644 (file)
@@ -25,13 +25,13 @@ static int CmdHelp(const char *Cmd);
 int CmdHFEPACollectPACENonces(const char *Cmd)
 {
        // requested nonce size
-       uint8_t m = 0;
+       unsigned int m = 0;
        // requested number of Nonces
        unsigned int n = 0;
        // delay between requests
        unsigned int d = 0;
        
-       sscanf(Cmd, "%"hhu" %u %u", &m, &n, &d);
+       sscanf(Cmd, "%u %u %u", &m, &n, &d);
        
        // values are expected to be > 0
        m = m > 0 ? m : 1;
Impressum, Datenschutz