diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-05-16 15:21:04 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-05-16 15:21:32 +0200 |
commit | bb7ff942d378538f37465873657ea5153914fab6 (patch) | |
tree | beee53f7d5ea59228023ab080ed93e91bc9fe552 /lib | |
parent | 48a40f04025ed4f8bc9818992862596af410e8a5 (diff) |
checksrc: trailing whitespace detection fix
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/checksrc.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/checksrc.pl b/lib/checksrc.pl index 99bbc74d0..019406b37 100755 --- a/lib/checksrc.pl +++ b/lib/checksrc.pl @@ -118,7 +118,7 @@ sub scanfile { checkwarn($line, length($1), $file, $l, "Contains TAB character", 1); } # detect trailing white space - if($l =~ /^(\S+)[ \t]+\z/) { + if($l =~ /^(.*)[ \t]+\z/) { checkwarn($line, length($1), $file, $l, "Trailing whitespace"); } |