From 53e86b66e313ad444dbb537a50f3c535edeea80e Mon Sep 17 00:00:00 2001 From: Erik Geiser Date: Wed, 27 Sep 2023 13:35:47 +0200 Subject: [PATCH] Increase default value buffer size to enable time estimation for larger word lists --- cmd/fuzz/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/fuzz/main.go b/cmd/fuzz/main.go index f8ba02c..2c57cef 100644 --- a/cmd/fuzz/main.go +++ b/cmd/fuzz/main.go @@ -30,7 +30,7 @@ import ( const ( defaultNumberOfThreads = 5 - defaultBufferSize = 100000 + defaultBufferSize = 200000 ) // Options collect options for a run.