Skip to content

Commit

Permalink
fix: 'hf mfu dump' - partial dump detection
Browse files Browse the repository at this point in the history
  • Loading branch information
iceman1001 committed May 3, 2018
1 parent 3e7576c commit d815ebd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/cmdhfmfu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1781,8 +1781,8 @@ int CmdHF14AMfUDump(const char *Cmd){
return 1;
}

bool is_partial = (pages == bufferSize/4);

bool is_partial = (pages != bufferSize/4);
pages = bufferSize/4;

uint8_t get_pack[] = {0,0};
Expand Down

0 comments on commit d815ebd

Please sign in to comment.