From 9f9903f90443e30eaa39c096257f5eb9fca04101 Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Mon, 10 Jan 2022 15:26:42 +1100 Subject: Fix tabs -> spaces --- passgen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/passgen.c b/passgen.c index 4434018..c2d1738 100644 --- a/passgen.c +++ b/passgen.c @@ -38,9 +38,9 @@ int main(int argc, char *argv[]) grammar_size = strlen(grammar); } else if (argc == 4) { /* - * Take arguments as triplets, specials, numbers + * Take arguments as triplets, specials, numbers * atoi might be scuffed but so be it (it just goes = 0 if invalid input) - */ + */ int triplets = atoi(argv[1]); int specials = atoi(argv[2]); int numbers = atoi(argv[3]); -- cgit