From 2db52b9406748428c359d9a5da4673eb2610ba55 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Wed, 15 Jan 2020 19:39:36 +0100 Subject: [PATCH] src/main.cpp: in cmd_search() n should default to 10 --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index c530c92..8b47070 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -53,7 +53,7 @@ bool option_l33t = false; void cmd_search(int argc, char **argv) { - int n = 100; + int n = 10; n_thread_decl; std::string input(argv[0]); KeySearch ks;