mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-09 17:56:53 +08:00
chg: textual change.
This commit is contained in:
parent
ddbe76d3c6
commit
f5538c1c4e
1 changed files with 2 additions and 2 deletions
|
@ -144,7 +144,7 @@ int CmdJablotronClone(const char *Cmd) {
|
|||
// clearing the topbit needed for the preambl detection.
|
||||
if ((fullcode & 0x7FFFFFFFFF) != fullcode) {
|
||||
fullcode &= 0x7FFFFFFFFF;
|
||||
PrintAndLog("Card Number Truncated to 40-bits: %"PRIx64, fullcode);
|
||||
PrintAndLog("Card Number Truncated to 39bits: %"PRIx64, fullcode);
|
||||
}
|
||||
|
||||
if ( !getJablotronBits(fullcode, bs)) {
|
||||
|
@ -190,7 +190,7 @@ int CmdJablotronSim(const char *Cmd) {
|
|||
// clearing the topbit needed for the preambl detection.
|
||||
if ((fullcode & 0x7FFFFFFFFF) != fullcode) {
|
||||
fullcode &= 0x7FFFFFFFFF;
|
||||
PrintAndLog("Card Number Truncated to 40-bits: %"PRIx64, fullcode);
|
||||
PrintAndLog("Card Number Truncated to 39bits: %"PRIx64, fullcode);
|
||||
}
|
||||
|
||||
uint8_t clk = 64, encoding = 2, separator = 0, invert = 1;
|
||||
|
|
Loading…
Reference in a new issue