mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-22 07:04:13 +08:00
cppcheck shadow
This commit is contained in:
parent
f761874347
commit
c3024fe9f2
1 changed files with 3 additions and 3 deletions
|
@ -362,10 +362,10 @@ void makedirs() {
|
||||||
}
|
}
|
||||||
|
|
||||||
static int datacmp(const void *p1, const void *p2, void *dummy) {
|
static int datacmp(const void *p1, const void *p2, void *dummy) {
|
||||||
unsigned char *d1 = (unsigned char *)p1;
|
unsigned char *d_1 = (unsigned char *)p1;
|
||||||
unsigned char *d2 = (unsigned char *)p2;
|
unsigned char *d_2 = (unsigned char *)p2;
|
||||||
|
|
||||||
return memcmp(d1, d2, DATASIZE);
|
return memcmp(d_1, d_2, DATASIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void *sorttable(void *d) {
|
void *sorttable(void *d) {
|
||||||
|
|
Loading…
Reference in a new issue