
mhiramat at redhat
Dec 16, 2009, 2:18 PM
Post #1 of 1
(161 views)
Permalink
|
|
[PATCH -tip] x86: Fix a typo in gen-insn-attr-x86.awk
|
|
Fix a typo of "character" in gen-insn-attr-x86.awk. Signed-off-by: Masami Hiramatsu <mhiramat [at] redhat> Cc: Ingo Molnar <mingo [at] elte> Cc: Jim Keniston <jkenisto [at] us> --- arch/x86/tools/gen-insn-attr-x86.awk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/x86/tools/gen-insn-attr-x86.awk b/arch/x86/tools/gen-insn-attr-x86.awk index 7a68506..6d1dc09 100644 --- a/arch/x86/tools/gen-insn-attr-x86.awk +++ b/arch/x86/tools/gen-insn-attr-x86.awk @@ -7,7 +7,7 @@ # Awk implementation sanity check function check_awk_implement() { if (!match("abc", "[[:lower:]]+")) - return "Your awk doesn't support charactor-class." + return "Your awk doesn't support character-class." if (sprintf("%x", 0) != "0") return "Your awk has a printf-format problem." return "" -- Masami Hiramatsu Software Engineer Hitachi Computer Products (America), Inc. Software Solutions Division e-mail: mhiramat [at] redhat -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo [at] vger More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|