X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/a78a3d9dc3aa42852dd3587815755c46693d7f03..e719470c461e38fb3ad99416d06fa1b5b19ff357:/client/reveng/poly.c diff --git a/client/reveng/poly.c b/client/reveng/poly.c index 119a434e..64e4a2db 100644 --- a/client/reveng/poly.c +++ b/client/reveng/poly.c @@ -140,7 +140,7 @@ filtop(FILE *input, unsigned long length, int flags, int bperhx) { bmp_t accu = BMP_C(0); bmp_t mask = bperhx == BMP_BIT ? ~BMP_C(0) : (BMP_C(1) << bperhx) - BMP_C(1); unsigned long iter = 0UL, idx; - int cmask = ~(~0 << CHAR_BIT), c; + int cmask = (1 << CHAR_BIT) - 1, c; int count = 0, ofs; poly_t poly = PZERO; if(bperhx == 0) return(poly); @@ -205,7 +205,7 @@ strtop(const char *string, int flags, int bperhx) { bmp_t accu; bmp_t mask = bperhx == BMP_BIT ? ~BMP_C(0) : (BMP_C(1) << bperhx) - BMP_C(1); int pass, count, ofs; - int cmask = ~(~0 << CHAR_BIT), c; + int cmask = (1 << CHAR_BIT) - 1 , c; const char *s; poly_t poly = PZERO;