diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-06-26 17:24:37 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-06-26 17:31:43 +0300 |
commit | 526bbbdd442ce143b52cd6a8b4ee424f9930be0d (patch) | |
tree | 35d37841d285d4c9274164620ec52ad5c8ef4a9e /tools/perf/builtin-report.c | |
parent | 80e9073f1f4473639d585b89ebc9130bb47920e8 (diff) | |
download | linux-526bbbdd442ce143b52cd6a8b4ee424f9930be0d.tar.xz |
perf report: Use skip_spaces()
No change in behaviour intended.
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lkml.kernel.org/n/tip-lcywlfqbi37nhegmhl1ar6wg@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-report.c')
-rw-r--r-- | tools/perf/builtin-report.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index 91a3762b4211..aef59f318a67 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c @@ -941,8 +941,7 @@ parse_time_quantum(const struct option *opt, const char *arg, pr_err("time quantum cannot be 0"); return -1; } - while (isspace(*end)) - end++; + end = skip_spaces(end); if (*end == 0) return 0; if (!strcmp(end, "s")) { |