Skip to content

Commit d2c0b17

Browse files
authored
Merge pull request #3017 from VarChar42/master
Fix invalid country code len for lf fdxb reader command
2 parents e59afad + ead54bd commit d2c0b17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/cmdlffdxb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ int demodFDXB(bool verbose) {
569569

570570
if (verbose == false) {
571571
PROMPT_CLEARLINE;
572-
PrintAndLogEx(SUCCESS, "Animal ID........... " _GREEN_("%04u-%012"PRIu64), countryCode, NationalCode);
572+
PrintAndLogEx(SUCCESS, "Animal ID........... " _GREEN_("%03u-%012"PRIu64), countryCode, NationalCode);
573573
return PM3_SUCCESS;
574574
}
575575

0 commit comments

Comments
 (0)