1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-17 03:50:03 +02:00

src/main.cpp: for search, clamp count variable.

This commit is contained in:
Henrik Hautakoski 2020-01-10 07:07:47 +01:00
parent b6ddf1ed24
commit 70965b0a60

View file

@ -75,6 +75,9 @@ void cmd_search(int argc, char **argv) {
if (argc > 1) {
n = atoi(argv[1]);
if (n < 1) {
n = 1;
}
}
#ifdef HAVE_THREADS