Commit 087dd73e authored by Sasha Goldshtein's avatar Sasha Goldshtein

ustat: Change 'count' argument type to int

parent 9f6d03b3
......@@ -137,7 +137,7 @@ class Tool(object):
help="Print the resulting BPF program (for debugging purposes)")
parser.add_argument("interval", nargs="?", default=1, type=int,
help="output interval, in seconds")
parser.add_argument("count", nargs="?", default=99999999,
parser.add_argument("count", nargs="?", default=99999999, type=int,
help="number of outputs")
self.args = parser.parse_args()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment