mirror of
https://github.com/samba-team/samba.git
synced 2025-11-30 20:23:49 +03:00
r24421: Ignore long #defines (like for registry keys).
Guenther
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
e6415c5232
commit
b310b1dfd6
@@ -3,7 +3,8 @@
|
||||
open( INFILE, "$ARGV[0]" ) || die $@;
|
||||
|
||||
$count = 0;
|
||||
while ( <INFILE> ) {
|
||||
while ( <INFILE> ) {
|
||||
next if ($_ =~ /^#define/);
|
||||
$count++ if (length($_) > 80);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user