mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 13:00:42 -07:00
style
This commit is contained in:
parent
8b8b67ac76
commit
e3dbbd3271
1 changed files with 6 additions and 4 deletions
|
@ -522,10 +522,12 @@ uprog(const poly_t gpoly, int flags, unsigned long seq) {
|
||||||
if (!seq)
|
if (!seq)
|
||||||
return;
|
return;
|
||||||
string = ptostr(gpoly, P_RTJUST, 4);
|
string = ptostr(gpoly, P_RTJUST, 4);
|
||||||
fprintf(stderr, "%s: searching: width=%ld poly=0x%s refin=%s refout=%s\n",
|
fprintf(stderr, "%s: searching: width=%lu poly=0x%s refin=%s refout=%s\n",
|
||||||
myname, plen(gpoly), string,
|
myname,
|
||||||
(flags & P_REFIN ? "true" : "false"),
|
plen(gpoly),
|
||||||
(flags & P_REFOUT ? "true" : "false")
|
string,
|
||||||
|
((flags & P_REFIN) ? "true" : "false"),
|
||||||
|
((flags & P_REFOUT) ? "true" : "false")
|
||||||
);
|
);
|
||||||
free(string);
|
free(string);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue