aboutsummaryrefslogtreecommitdiff
path: root/src/tools/perf/pubdrop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/perf/pubdrop.c')
-rw-r--r--src/tools/perf/pubdrop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/perf/pubdrop.c b/src/tools/perf/pubdrop.c
index 1788a3cf..83524609 100644
--- a/src/tools/perf/pubdrop.c
+++ b/src/tools/perf/pubdrop.c
@@ -108,7 +108,7 @@ parse_int(const char *arg, const char *what)
char *eptr;
val = strtol(arg, &eptr, 10);
- // Must be a postive number less than around a billion.
+ // Must be a positive number less than around a billion.
if ((val < 0) || (val > (1 << 30)) || (*eptr != 0) || (eptr == arg)) {
die("Invalid %s", what);
}