mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 05:13:46 -07:00
FIX: remove warning of overwriting
This commit is contained in:
parent
7271d5afc9
commit
9b7089e71f
1 changed files with 3 additions and 3 deletions
|
@ -48,10 +48,10 @@ void PrintAndLogEx(logLevel_t level, char *fmt, ...) {
|
||||||
// skip debug messages if client debugging is turned off i.e. 'DATA SETDEBUG 0'
|
// skip debug messages if client debugging is turned off i.e. 'DATA SETDEBUG 0'
|
||||||
if (g_debugMode == 0 && level == DEBUG)
|
if (g_debugMode == 0 && level == DEBUG)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
char prefix[20] = {0};
|
||||||
char buffer[MAX_PRINT_BUFFER] = {0};
|
char buffer[MAX_PRINT_BUFFER] = {0};
|
||||||
char buffer2[MAX_PRINT_BUFFER] = {0};
|
char buffer2[MAX_PRINT_BUFFER+20] = {0};
|
||||||
char prefix[20] = {0};
|
|
||||||
char *token = NULL;
|
char *token = NULL;
|
||||||
int size = 0;
|
int size = 0;
|
||||||
// {NORMAL, SUCCESS, INFO, FAILED, WARNING, ERR, DEBUG}
|
// {NORMAL, SUCCESS, INFO, FAILED, WARNING, ERR, DEBUG}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue