]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/cmdhfepa.c
fixed stupid 64-bit formatting for x86/amd64 and unix/windows - part2
[proxmark3-svn] / client / cmdhfepa.c
index d9413cf3e2d84c03ed1149966b0514652a6a6907..6588c393b618272a35667bdc31428e0fe13a07e6 100644 (file)
@@ -31,13 +31,13 @@ int CmdHFEPACollectPACENonces(const char *Cmd)
        // delay between requests
        unsigned int d = 0;
        
-       sscanf(Cmd, "%hhu %u %u", &m, &n, &d);
+       sscanf(Cmd, "%"hhu" %u %u", &m, &n, &d);
        
        // values are expected to be > 0
        m = m > 0 ? m : 1;
        n = n > 0 ? n : 1;
 
-       PrintAndLog("Collecting %u %hhu-byte nonces", n, m);
+       PrintAndLog("Collecting %u %"hhu"-byte nonces", n, m);
        PrintAndLog("Start: %u", time(NULL));
        // repeat n times
        for (unsigned int i = 0; i < n; i++) {
Impressum, Datenschutz