]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - tools/perf/util/hist.c
Merge branches 'pm-core', 'pm-qos', 'pm-domains' and 'pm-opp'
[linux.git] / tools / perf / util / hist.c
index 7d1b7d33e644bd7dd97fef11f5b473770ec8a236..32c6a939e4cc6879d872574e27b7dab28970cb2c 100644 (file)
@@ -2446,8 +2446,10 @@ int parse_filter_percentage(const struct option *opt __maybe_unused,
                symbol_conf.filter_relative = true;
        else if (!strcmp(arg, "absolute"))
                symbol_conf.filter_relative = false;
-       else
+       else {
+               pr_debug("Invalud percentage: %s\n", arg);
                return -1;
+       }
 
        return 0;
 }