1
0
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:
Günther Deschner
2007-08-14 15:40:49 +00:00
committed by Gerald (Jerry) Carter
parent e6415c5232
commit b310b1dfd6

View File

@@ -3,7 +3,8 @@
open( INFILE, "$ARGV[0]" ) || die $@;
$count = 0;
while ( <INFILE> ) {
while ( <INFILE> ) {
next if ($_ =~ /^#define/);
$count++ if (length($_) > 80);
}