diff options
author | 2014-09-03 16:01:36 -0700 | |
---|---|---|
committer | 2014-09-03 16:01:36 -0700 | |
commit | 516d5f8b04ce2bcd24f03323fc743ae25b81373d (patch) | |
tree | ff37e84692dbef5063bbf22672eb8bfad0f25dd8 /tools/perf/util/python.c | |
parent | Input: drv260x - fix binding document (diff) | |
parent | Linux 3.17-rc3 (diff) | |
download | linux-dev-516d5f8b04ce2bcd24f03323fc743ae25b81373d.tar.xz linux-dev-516d5f8b04ce2bcd24f03323fc743ae25b81373d.zip |
Merge tag 'v3.17-rc3' into next
Sync with mainline to bring in Chrome EC changes.
Diffstat (limited to 'tools/perf/util/python.c')
-rw-r--r-- | tools/perf/util/python.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/util/python.c b/tools/perf/util/python.c index 122669c18ff4..12aa9b0d0ba1 100644 --- a/tools/perf/util/python.c +++ b/tools/perf/util/python.c @@ -14,12 +14,12 @@ */ int verbose; -int eprintf(int level, const char *fmt, ...) +int eprintf(int level, int var, const char *fmt, ...) { va_list args; int ret = 0; - if (verbose >= level) { + if (var >= level) { va_start(args, fmt); ret = vfprintf(stderr, fmt, args); va_end(args); |