mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-31 03:50:12 -07:00
fix clang compiler warnings (including fixing a bug revealed in cmdhftopaz.c)
This commit is contained in:
parent
8aee1b8418
commit
31a29271b9
5 changed files with 7 additions and 7 deletions
|
@ -139,7 +139,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 = ~(~0U << CHAR_BIT), c;
|
||||
int count = 0, ofs;
|
||||
poly_t poly = PZERO;
|
||||
if(bperhx == 0) return(poly);
|
||||
|
@ -204,7 +204,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 = ~(~0U << CHAR_BIT), c;
|
||||
const char *s;
|
||||
|
||||
poly_t poly = PZERO;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue