Fix invalid country code len for lf fdxb reader command

This commit is contained in:
Michael Wiesinger
2025-11-07 22:12:06 +01:00
committed by GitHub
parent 737a6dc3d7
commit ead54bdf54
+1 -1
View File
@@ -569,7 +569,7 @@ int demodFDXB(bool verbose) {
if (verbose == false) {
PROMPT_CLEARLINE;
PrintAndLogEx(SUCCESS, "Animal ID........... " _GREEN_("%04u-%012"PRIu64), countryCode, NationalCode);
PrintAndLogEx(SUCCESS, "Animal ID........... " _GREEN_("%03u-%012"PRIu64), countryCode, NationalCode);
return PM3_SUCCESS;
}