From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751954AbdDBTSm (ORCPT ); Sun, 2 Apr 2017 15:18:42 -0400 Received: from terminus.zytor.com ([65.50.211.136]:40209 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751240AbdDBTSj (ORCPT ); Sun, 2 Apr 2017 15:18:39 -0400 Date: Sun, 2 Apr 2017 12:14:12 -0700 From: tip-bot for Colin Ian King Message-ID: Cc: mingo@kernel.org, linux-kernel@vger.kernel.org, namhyung@kernel.org, jolsa@kernel.org, hpa@zytor.com, peterz@infradead.org, kjlx@templeofstupid.com, tglx@linutronix.de, colin.king@canonical.com, alexander.shishkin@linux.intel.com, acme@redhat.com Reply-To: jolsa@kernel.org, linux-kernel@vger.kernel.org, namhyung@kernel.org, mingo@kernel.org, alexander.shishkin@linux.intel.com, colin.king@canonical.com, acme@redhat.com, hpa@zytor.com, peterz@infradead.org, tglx@linutronix.de, kjlx@templeofstupid.com In-Reply-To: <20170330095440.19444-1-colin.king@canonical.com> References: <20170330095440.19444-1-colin.king@canonical.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf utils: Fix spelling mistake: "Invalud" -> "Invalid" Git-Commit-ID: a596a877fde0b34e622dbf123f361dacd086cd6e X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: a596a877fde0b34e622dbf123f361dacd086cd6e Gitweb: http://git.kernel.org/tip/a596a877fde0b34e622dbf123f361dacd086cd6e Author: Colin Ian King AuthorDate: Thu, 30 Mar 2017 10:54:40 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 30 Mar 2017 11:09:42 -0300 perf utils: Fix spelling mistake: "Invalud" -> "Invalid" Trivial fix to spelling mistake in pr_debug message. Signed-off-by: Colin King Cc: Alexander Shishkin Cc: Jiri Olsa Cc: Namhyung Kim Cc: Krister Johansen Cc: Peter Zijlstra Cc: kernel-janitors@vger.kernel.org Link: http://lkml.kernel.org/r/20170330095440.19444-1-colin.king@canonical.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/util/hist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c index 3c4d4d0..61bf304 100644 --- a/tools/perf/util/hist.c +++ b/tools/perf/util/hist.c @@ -2459,7 +2459,7 @@ int parse_filter_percentage(const struct option *opt __maybe_unused, else if (!strcmp(arg, "absolute")) symbol_conf.filter_relative = false; else { - pr_debug("Invalud percentage: %s\n", arg); + pr_debug("Invalid percentage: %s\n", arg); return -1; }