Remove artificial limit for -i.

Obtained from:	CheriBSD
MFC after:	2 weeks
Sponsored by:	DARPA, AFRL
This commit is contained in:
Edward Tomasz Napierala 2017-11-02 12:16:50 +00:00
parent 91b060d04b
commit 21330e2935
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=325319

View File

@ -808,7 +808,7 @@ main(int argc, char *argv[])
switch (ch) {
case 'i':
ll = strtol(optarg, &endp, 10);
if (*endp != 0 || ll < 1 || ll > 100000)
if (*endp != 0 || ll < 1)
usage();
iterations = ll;
break;