]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
FIX: minor variable fixes when compiling on linux.
authoriceman1001 <iceman@iuse.se>
Sun, 14 Jun 2015 21:02:52 +0000 (23:02 +0200)
committericeman1001 <iceman@iuse.se>
Sun, 14 Jun 2015 21:02:52 +0000 (23:02 +0200)
cmddata.c: In function ‘Cmdmandecoderaw’:
cmddata.c:420:2: warning: format ‘%i’ expects argument of type ‘int *’, but argument 4 has type ‘size_t *’ [-Wformat=]
  sscanf(Cmd, "%i %i", &invert, &maxErr);
  ^

cmdlfem4x.c: In function ‘CmdEM410xRead’:
cmdlfem4x.c:58:2: warning: format ‘%llx’ expects argument of type ‘long long unsigned int’, but argument 3 has type ‘uint64_t’ [-Wformat=]
  sprintf(id, "%010llx",lo);
  ^

client/cmddata.c
client/cmdlfem4x.c

index d7dd5795141c8c36bdad6d13b394d0d8223f3de5..ebab14396f28f456ef128dafeb3b0ffa06b93552 100644 (file)
@@ -392,7 +392,7 @@ int Cmdmandecoderaw(const char *Cmd)
        int errCnt=0;
        size_t size=0;
        int invert=0;
-       size_t maxErr = 20;
+       int maxErr = 20;
        char cmdp = param_getchar(Cmd, 0);
        if (strlen(Cmd) > 5 || cmdp == 'h' || cmdp == 'H') {
                PrintAndLog("Usage:  data manrawdecode [invert] [maxErr]");
index c167f456f646faa378545697a83fc7ed4533c8ad..c68d35f88a9b5859f53db3700f38eedc18a2bfa5 100644 (file)
@@ -20,6 +20,9 @@
 #include "cmdlf.h"
 #include "cmdlfem4x.h"
 #include "lfdemod.h"
+
+#define llx PRIx64
+
 char *global_em410xId;
 
 static int CmdHelp(const char *Cmd);
Impressum, Datenschutz