mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-29 11:52:59 +08:00
unsigned variables cant be negative
This commit is contained in:
parent
c8c9a69e3e
commit
0ed99ce0c4
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ void RunMod() {
|
|||
|
||||
Dbprintf("[=] Proxbrute - starting decrementing card number");
|
||||
|
||||
while (cardnum >= 0) {
|
||||
while (cardnum > 0) {
|
||||
|
||||
// Needed for exiting from proxbrute when button is pressed
|
||||
if (BUTTON_PRESS()) {
|
||||
|
|
Loading…
Reference in a new issue