svn commit: r330330 - stable/11/tools/tools/syscall_timing
Eitan Adler
eadler at FreeBSD.org
Sat Mar 3 11:11:08 UTC 2018
Author: eadler
Date: Sat Mar 3 11:11:07 2018
New Revision: 330330
URL: https://svnweb.freebsd.org/changeset/base/330330
Log:
MFC r325319:
Remove artificial limit for -i.
Modified:
stable/11/tools/tools/syscall_timing/syscall_timing.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/tools/tools/syscall_timing/syscall_timing.c
==============================================================================
--- stable/11/tools/tools/syscall_timing/syscall_timing.c Sat Mar 3 11:02:34 2018 (r330329)
+++ stable/11/tools/tools/syscall_timing/syscall_timing.c Sat Mar 3 11:11:07 2018 (r330330)
@@ -706,7 +706,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;
More information about the svn-src-stable-11
mailing list