mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-01 05:07:03 +08:00
commit
a7fd398d33
1 changed files with 3 additions and 3 deletions
|
@ -37,9 +37,9 @@ void PrintAndLogOptions(char *str[][2], size_t size, size_t space)
|
|||
for(int j = 0; j < 2; j++)
|
||||
{
|
||||
if(j == 0)
|
||||
snprintf(format, sizeof(format), "%%%us%%%us", space, counts[j]);
|
||||
snprintf(format, sizeof(format), "%%%zus%%%zus", space, counts[j]);
|
||||
else
|
||||
snprintf(format, sizeof(format), "%%%us%%-%us", space, counts[j]);
|
||||
snprintf(format, sizeof(format), "%%%zus%%-%zus", space, counts[j]);
|
||||
snprintf(buff + strlen(buff), sizeof(buff) - strlen(buff), format, " ", str[i][j]);
|
||||
}
|
||||
if(i<size-1)
|
||||
|
|
Loading…
Reference in a new issue