Messages in this thread Patch in this message |  | | | From | Andy Whitcroft <> | | Subject | [PATCH 14/17] checkpatch: %Lx tests should hand %% as a literal | | Date | Mon, 11 Aug 2008 21:13:09 +0100 |
| |
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> --- scripts/checkpatch.pl | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 6ddae89..c7980ff 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; -- 1.6.0.rc1.258.g80295
|  |