On Mon, 2014-01-13 at 02:23 +0900, Masanari Iida wrote:
> This patch corrected a spelling typo in comment
> and messages in checkpatch.pl.
[]
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
[]
> @@ -4218,7 +4218,7 @@ sub process {
>                       }
>               }
>  
> -# check for case / default statements not preceeded by 
> break/fallthrough/switch
> +# check for case / default statements not preceded by 
> break/fallthrough/switch
>               if ($line =~ 
> /^.\s*(?:case\s+(?:$Ident|$Constant)\s*|default):/) {
>                       my $has_break = 0;
>                       my $has_statement = 0;
> @@ -4239,7 +4239,7 @@ sub process {
>                       }
>                       if (!$has_break && $has_statement) {
>                               WARN("MISSING_BREAK",
> -                                  "Possible switch case/default not 
> preceeded by break or fallthrough comment\n" . $herecurr);
> +                                  "Possible switch case/default not preceded 
> by break or fallthrough comment\n" . $herecurr);
>                       }
>               }

Thanks.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to