mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
fix: too many arguments to function
This commit is contained in:
parent
35cfdcd28c
commit
b10dca061a
3 changed files with 3 additions and 3 deletions
|
@ -37,7 +37,7 @@ int main(int argc, char **argv)
|
|||
return_on_error = 1;
|
||||
|
||||
while (1) {
|
||||
while (!OpenProxmark(0)) { sleep(1); }
|
||||
while (!OpenProxmark()) { sleep(1); }
|
||||
while (1) {
|
||||
UsbCommand cmdbuf;
|
||||
CommandReceived(argv[1]);
|
||||
|
|
|
@ -136,7 +136,7 @@ int main(int argc, char **argv) {
|
|||
do {
|
||||
msleep(500);
|
||||
fprintf(stderr, ".");
|
||||
} while (!OpenProxmark(0));
|
||||
} while (!OpenProxmark());
|
||||
|
||||
fprintf(stdout, " Found.\n");
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ int main()
|
|||
return_on_error = 1;
|
||||
|
||||
while(1) {
|
||||
while (!OpenProxmark(0)) { sleep(1); }
|
||||
while (!OpenProxmark()) { sleep(1); }
|
||||
while (1) {
|
||||
UsbCommand cmdbuf;
|
||||
CommandReceived("hf 14a snoop");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue