Skip to content

Commit

Permalink
ustat: Change 'count' argument type to int
Browse files Browse the repository at this point in the history
  • Loading branch information
goldshtn committed Oct 26, 2016
1 parent d99f5d6 commit 4e4e095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ustat.py
Expand Up @@ -137,7 +137,7 @@ def _parse_args(self):
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()

Expand Down

0 comments on commit 4e4e095

Please sign in to comment.