This commit is contained in:
iceman1001 2019-03-19 00:11:32 +01:00
commit e3dbbd3271

View file

@ -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);
} }