Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1584041 > unrolled thread
| Started by | Colin King <colin.king@canonical.com> |
|---|---|
| First post | 2017-02-19 01:00 +0100 |
| Last post | 2017-02-21 20:20 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] gcc-plugins: fix spelling mistake: "unkown" -> "unknown" Colin King <colin.king@canonical.com> - 2017-02-19 01:00 +0100
Re: [PATCH] gcc-plugins: fix spelling mistake: "unkown" -> "unknown" Kees Cook <keescook@chromium.org> - 2017-02-21 20:20 +0100
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Date | 2017-02-19 01:00 +0100 |
| Subject | [PATCH] gcc-plugins: fix spelling mistake: "unkown" -> "unknown" |
| Message-ID | <tcn4Z-8qc-1@gated-at.bofh.it> |
From: Colin Ian King <colin.king@canonical.com>
trivial fix to spelling mistake in error message
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
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);
--
2.10.2
[toc] | [next] | [standalone]
| From | Kees Cook <keescook@chromium.org> |
|---|---|
| Date | 2017-02-21 20:20 +0100 |
| Message-ID | <tdo8I-6Sm-73@gated-at.bofh.it> |
| In reply to | #1584041 |
On Sat, Feb 18, 2017 at 3:50 PM, Colin King <colin.king@canonical.com> wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> trivial fix to spelling mistake in error message
Thanks! I've already got this updated. I noticed the same thing a
couple weeks ago. :)
-Kees
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> 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);
> --
> 2.10.2
>
--
Kees Cook
Pixel Security
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web