diff options
author | Andy Whitcroft <apw@shadowen.org> | 2008-10-15 22:02:23 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-16 11:21:35 -0700 |
commit | 2a1bc5d5c5096f2dfb6f8b18f39ecb718f101535 (patch) | |
tree | 877a3ab1828a452f0592a58d0f171e2ffe86dc1a /scripts/checkpatch.pl | |
parent | 9bd49efe4e4bf88d9c1026db50325fd1b2e59519 (diff) | |
download | linux-3.10-2a1bc5d5c5096f2dfb6f8b18f39ecb718f101535.tar.gz linux-3.10-2a1bc5d5c5096f2dfb6f8b18f39ecb718f101535.tar.bz2 linux-3.10-2a1bc5d5c5096f2dfb6f8b18f39ecb718f101535.zip |
checkpatch: %Lx tests should hand %% as a literal
Ensure that we handle literal %'s correctly when adjacent to a %Lx.
%Lx bad
%%Lx good
%%%Lx bad
Signed-off-by: Andy Whitcroft <apw@shadowen.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/checkpatch.pl')
-rwxr-xr-x | scripts/checkpatch.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 6ddae89c3cf..c7980ff2975 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -2392,6 +2392,7 @@ sub process { my $string; while ($line =~ /(?:^|")([X\t]*)(?:"|$)/g) { $string = substr($rawline, $-[1], $+[1] - $-[1]); + $string =~ s/%%/__/g; if ($string =~ /(?<!%)%L[udi]/) { WARN("\%Ld/%Lu are not-standard C, use %lld/%llu\n" . $herecurr); last; |