mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
fix: usb_cdc don't report that pm3 device is selfpowered.. (since its not by default)
This commit is contained in:
parent
76e139701a
commit
b5842e8c1b
2 changed files with 6 additions and 4 deletions
|
@ -1166,9 +1166,8 @@ int CmdHF14AMfNestedHard(const char *Cmd) {
|
|||
return 0;
|
||||
}
|
||||
|
||||
int randInRange(int min, int max)
|
||||
{
|
||||
return min + (int) (rand() / (double) (RAND_MAX + 1) * (max - min + 1));
|
||||
int randInRange(int min, int max) {
|
||||
return min + (int) (rand() / (double) (RAND_MAX + 1) * (max - min + 1));
|
||||
}
|
||||
|
||||
//Fisher–Yates shuffle
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue