mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-18 03:00:58 +08:00
chg: double defines..
This commit is contained in:
parent
e02e145fae
commit
7044cf8fdf
1 changed files with 1 additions and 2 deletions
|
@ -725,7 +725,6 @@ static const struct malias aliases[] = {
|
||||||
static const struct mpreset models[] = {
|
static const struct mpreset models[] = {
|
||||||
{ 0UL, 0, 0, P_BE, 0, 0, 0, NULL }, /* terminating entry */
|
{ 0UL, 0, 0, P_BE, 0, 0, 0, NULL }, /* terminating entry */
|
||||||
};
|
};
|
||||||
# define NPRESETS 0
|
|
||||||
|
|
||||||
static const struct malias aliases[] = {
|
static const struct malias aliases[] = {
|
||||||
{NULL, NULL }, /* terminating entry */
|
{NULL, NULL }, /* terminating entry */
|
||||||
|
@ -794,7 +793,7 @@ void mbynum(model_t *dest, int num) {
|
||||||
|
|
||||||
int mcount(void) {
|
int mcount(void) {
|
||||||
/* Returns the number of preset models. */
|
/* Returns the number of preset models. */
|
||||||
return(NPRESETS);
|
return (NPRESETS);
|
||||||
}
|
}
|
||||||
|
|
||||||
char * mnames(void) {
|
char * mnames(void) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue