FIX: a compilation error for a static method in CmdHF14A.h

This commit is contained in:
iceman1001 2015-01-06 15:36:33 +01:00
commit dd683ece72
3 changed files with 2 additions and 1 deletions

View file

@ -168,6 +168,7 @@ int CmdHF14AReader(const char *Cmd)
PrintAndLog(" SAK : %02x [%d]", card.sak, resp.arg[0]);
// Double & triple sized UID, can be mapped to a manufacturer.
// HACK: does this apply for Ultralight cards?
if ( card.uidlen > 4 ) {
PrintAndLog("MANUFACTURER : %s", getTagInfo(card.uid[0]));
}

View file

@ -20,5 +20,4 @@ int CmdHF14AReader(const char *Cmd);
int CmdHF14ASim(const char *Cmd);
int CmdHF14ASnoop(const char *Cmd);
static char* getTagInfo(uint8_t uid);
#endif

View file

@ -31,6 +31,7 @@
#include "data.h"
#include "graph.h"
#include "ui.h"
#include "util.h"
#include "cmdparser.h"
#include "cmdhf15.h"
#include "../common/iso15693tools.h"