mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-23 15:47:42 +08:00
style to prevent cppcheck duplicate assignment warning
This commit is contained in:
parent
0db962640c
commit
0830cfcf1c
1 changed files with 1 additions and 1 deletions
|
@ -645,8 +645,8 @@ static int CmdFdxBReader(const char *Cmd) {
|
||||||
|
|
||||||
config.verbose = false;
|
config.verbose = false;
|
||||||
|
|
||||||
int16_t old_div = config.divisor;
|
|
||||||
int16_t curr_div = config.divisor;
|
int16_t curr_div = config.divisor;
|
||||||
|
int16_t old_div = curr_div;
|
||||||
|
|
||||||
if (cm) {
|
if (cm) {
|
||||||
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to exit");
|
PrintAndLogEx(INFO, "Press " _GREEN_("<Enter>") " to exit");
|
||||||
|
|
Loading…
Reference in a new issue