summaryrefslogtreecommitdiff
path: root/2/part1.c
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2020-12-05 15:20:27 +0100
committerBond_009 <bond.009@outlook.com>2020-12-05 15:20:27 +0100
commit7a28ce25a69d3177879d134b87eeff5f754638b5 (patch)
treec6e7418f2d28607a2caf73a81197470ebcc37e7d /2/part1.c
parent4f3827b3165ec19abcd9e5a5892cf00c0db893ed (diff)
Remove shell overhead for benchmarking
Diffstat (limited to '2/part1.c')
-rw-r--r--2/part1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/2/part1.c b/2/part1.c
index 9a74a2c..11d955b 100644
--- a/2/part1.c
+++ b/2/part1.c
@@ -22,7 +22,7 @@ bool is_valid_password(char *pass, char *policy)
int main(int argc, char *argv[])
{
- FILE *file = fopen(argv[1], "r");
+ FILE *file = fopen(argv[argc - 1], "r");
if (!file) {
return 1;
}