Skip to content

Commit

Permalink
Added line breaks at the end of coverage test
Browse files Browse the repository at this point in the history
  • Loading branch information
dorian-bucaille committed Mar 5, 2022
1 parent bc33617 commit b6558af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/online.c
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,6 @@ int main(int argc, char *argv[]) {
printf("Starting attack...\n");
int foundNumber = online_from_files_coverage(start_path, end_path, pwd_length);
printf("Number of passwords found: %d\n", foundNumber);
printf("Coverage: %f %%", ((double) foundNumber / TEST_COVERAGE) * 100);
printf("Coverage: %f %%\n\n", ((double) foundNumber / TEST_COVERAGE) * 100);
}
}

0 comments on commit b6558af

Please sign in to comment.