mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
minor output change
This commit is contained in:
parent
af65f5f71d
commit
1282b0e691
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ static void *uart_receiver(void *targ) {
|
|||
rxlen = sizeof(UsbCommand);
|
||||
if (uart_receive(sp,rx,&rxlen)) {
|
||||
if ((rxlen % sizeof(UsbCommand)) != 0) {
|
||||
PrintAndLog("ERROR: received %zd bytes, which does not seem to be one or more command(s)\n",rxlen);
|
||||
PrintAndLog("ERROR: received %03zd bytes, which does not seem to be one or more command(s)\n",rxlen );
|
||||
continue;
|
||||
}
|
||||
cmd_count = rxlen / sizeof(UsbCommand);
|
||||
|
|
Loading…
Reference in a new issue