mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 02:34:48 +08: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)
|
||||
return;
|
||||
string = ptostr(gpoly, P_RTJUST, 4);
|
||||
fprintf(stderr, "%s: searching: width=%ld poly=0x%s refin=%s refout=%s\n",
|
||||
myname, plen(gpoly), string,
|
||||
(flags & P_REFIN ? "true" : "false"),
|
||||
(flags & P_REFOUT ? "true" : "false")
|
||||
fprintf(stderr, "%s: searching: width=%lu poly=0x%s refin=%s refout=%s\n",
|
||||
myname,
|
||||
plen(gpoly),
|
||||
string,
|
||||
((flags & P_REFIN) ? "true" : "false"),
|
||||
((flags & P_REFOUT) ? "true" : "false")
|
||||
);
|
||||
free(string);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue