mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
cppcheck fix name difference declaration/definition
This commit is contained in:
parent
b19c7f377e
commit
d37547917e
1 changed files with 2 additions and 2 deletions
|
@ -40,10 +40,10 @@ void pm3_close(pm3_device_t *dev) {
|
|||
}
|
||||
}
|
||||
|
||||
int pm3_console(pm3_device_t *dev, char *Cmd) {
|
||||
int pm3_console(pm3_device_t *dev, char *cmd) {
|
||||
// For now, there is no real device context:
|
||||
(void) dev;
|
||||
return CommandReceived(Cmd);
|
||||
return CommandReceived(cmd);
|
||||
}
|
||||
|
||||
const char *pm3_name_get(pm3_device_t *dev) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue