mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
fix fct name mismatch
This commit is contained in:
parent
5107b7ce04
commit
f63ba3f31a
4 changed files with 9 additions and 9 deletions
|
@ -101,9 +101,9 @@ void Dbhexdump(int len, const uint8_t *d, bool bAsci) {
|
|||
d += 16;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}void print_result(const char *name, const uint8_t *d, size_t
|
||||
|
||||
void print_result(const char *name, const uint8_t *d, size_t n) {
|
||||
n) {
|
||||
|
||||
const uint8_t *p = d;
|
||||
uint16_t tmp = n & 0xFFF0;
|
||||
|
@ -129,7 +129,7 @@ void print_result(const char *name, const uint8_t *d, size_t n) {
|
|||
}
|
||||
|
||||
// Prints message and hexdump
|
||||
void print_dbg(char *msg, uint8_t *d, uint16_t n) {
|
||||
void print_dbg(const char *msg, const uint8_t *d, uint16_t n) {
|
||||
if (g_dbglevel == DBG_DEBUG) {
|
||||
print_result(msg, d, n);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue