]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
Removed some dev- printouts
authorMartin Holst Swende <martin@swende.se>
Fri, 13 Feb 2015 18:59:28 +0000 (19:59 +0100)
committerMartin Holst Swende <martin@swende.se>
Fri, 13 Feb 2015 18:59:28 +0000 (19:59 +0100)
client/cmdlf.c
client/util.c

index b7c1b13f75e8a61ee7766b75d8265bbb0cbbd7ee..f268eaa23579364430f0e243f18b7441b7e04002 100644 (file)
@@ -414,7 +414,6 @@ int CmdLFSetConfig(const char *Cmd)
        uint8_t cmdp =0;
        while(param_getchar(Cmd, cmdp) != 0x00)
        {
-               PrintAndLog("working %c", param_getchar(Cmd, cmdp));
                switch(param_getchar(Cmd, cmdp))
                {
                case 'h':
index 6b47eab9eba29eddd541cd115809beb00a32f66d..edd9aebce96dec0a3de08dc7ad68798a9a8a0aaf 100644 (file)
@@ -237,7 +237,6 @@ uint8_t param_get8(const char *line, int paramnum)
 uint8_t param_getdec(const char *line, int paramnum, uint8_t *destination)
 {
        uint8_t val =  param_get8ex(line, paramnum, 255, 10);
-       printf("read %i", (int8_t ) val);
        if( (int8_t) val == -1) return 1;
        (*destination) = val;
        return 0;
Impressum, Datenschutz