Skip to content

Commit

Permalink
Merge pull request #940 from acerjt/patch-2
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
carlospolop authored Sep 25, 2024
2 parents e69d84f + 9044333 commit 8db28fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binary-exploitation/format-strings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ int main(int argc, char *argv[]) {
char *user_input;
user_input = argv[1];
FILE *output_file = fopen("output.txt", "w");
fprintf(output_file, user_input); // The user input cna include formatters!
fprintf(output_file, user_input); // The user input can include formatters!
fclose(output_file);
return 0;
}
Expand Down

0 comments on commit 8db28fd

Please sign in to comment.