mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
fix: wrong size
This commit is contained in:
parent
f065f5c163
commit
867a3a8f0c
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ void PrintAndLogEx(logLevel_t level, char *fmt, ...) {
|
|||
strncpy(prefix,_GREEN_([+] ), sizeof(prefix)-1);
|
||||
break;
|
||||
default:
|
||||
strncpy(prefix, prefixes[level], sizeof(buffer)-1);
|
||||
strncpy(prefix, prefixes[level], sizeof(prefix)-1);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue