From patchwork Sat Feb 18 23:50:01 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin King X-Patchwork-Id: 9581421 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 593576043A for ; Sun, 19 Feb 2017 00:36:33 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 486EF28739 for ; Sun, 19 Feb 2017 00:36:33 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 3A35E287B1; Sun, 19 Feb 2017 00:36:33 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from mother.openwall.net (mother.openwall.net [195.42.179.200]) by mail.wl.linuxfoundation.org (Postfix) with SMTP id 55E6D28739 for ; Sun, 19 Feb 2017 00:36:31 +0000 (UTC) Received: (qmail 1853 invoked by uid 550); 19 Feb 2017 00:36:30 -0000 Mailing-List: contact kernel-hardening-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Delivered-To: mailing list kernel-hardening@lists.openwall.com Delivered-To: moderator for kernel-hardening@lists.openwall.com Received: (qmail 13804 invoked from network); 18 Feb 2017 23:50:13 -0000 From: Colin King To: Kees Cook , Emese Revfy , kernel-hardening@lists.openwall.com Cc: linux-kernel@vger.kernel.org Date: Sat, 18 Feb 2017 23:50:01 +0000 Message-Id: <20170218235001.20276-1-colin.king@canonical.com> X-Mailer: git-send-email 2.10.2 MIME-Version: 1.0 Subject: [kernel-hardening] [PATCH] gcc-plugins: fix spelling mistake: "unkown" -> "unknown" X-Virus-Scanned: ClamAV using ClamSMTP From: Colin Ian King trivial fix to spelling mistake in error message Signed-off-by: Colin Ian King --- scripts/gcc-plugins/initify_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gcc-plugins/initify_plugin.c b/scripts/gcc-plugins/initify_plugin.c index 56ed878..2ed998a 100644 --- a/scripts/gcc-plugins/initify_plugin.c +++ b/scripts/gcc-plugins/initify_plugin.c @@ -1846,7 +1846,7 @@ __visible int plugin_init(struct plugin_name_args *plugin_info, struct plugin_gc continue; } - error(G_("unkown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); + error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); } register_callback(plugin_name, PLUGIN_INFO, NULL, &initify_plugin_info);