Skip to content

Commit

Permalink
FIX: erroneous semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgrin committed Aug 8, 2016
1 parent 29f8c2c commit 170e7c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/cmdhfmf.c
Original file line number Diff line number Diff line change
Expand Up @@ -1326,7 +1326,7 @@ uint8_t k_sectorsCount = 16;
void readerAttack(nonces_t data[], bool setEmulatorMem) {

// initialize storage for found keys
if (k_sector == NULL);
if (k_sector == NULL)
k_sector = calloc(k_sectorsCount, sizeof(sector));
if (k_sector == NULL)
return;
Expand Down

0 comments on commit 170e7c9

Please sign in to comment.