mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-12 18:25:07 +08:00
unsigned long long
This commit is contained in:
parent
b57c2d5935
commit
35592b979d
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ static char *getTagInfo_15(uint8_t *uid) {
|
|||
int i = 0, best = -1;
|
||||
memcpy(&myuid, uid, sizeof(uint64_t));
|
||||
while (uidmapping[i].mask > 0) {
|
||||
mask = (~0LL) << (64 - uidmapping[i].mask);
|
||||
mask = (~0ULL) << (64 - uidmapping[i].mask);
|
||||
if ((myuid & mask) == uidmapping[i].uid) {
|
||||
if (best == -1) {
|
||||
best = i;
|
||||
|
|
Loading…
Reference in a new issue