aboutsummaryrefslogtreecommitdiff
path: root/scripts/maint/check_config_macros.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/maint/check_config_macros.pl')
-rwxr-xr-xscripts/maint/check_config_macros.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/maint/check_config_macros.pl b/scripts/maint/check_config_macros.pl
index bcde2beccc..1398b9984a 100755
--- a/scripts/maint/check_config_macros.pl
+++ b/scripts/maint/check_config_macros.pl
@@ -7,7 +7,7 @@ my @macros = ();
open(F, 'orconfig.h.in');
while(<F>) {
if (/^#undef +([A-Za-z0-9_]*)/) {
- push @macros, $1;
+ push @macros, $1;
}
}
close F;
@@ -15,6 +15,6 @@ close F;
for my $m (@macros) {
my $s = `git grep '$m' src`;
if ($s eq '') {
- print "Unused: $m\n";
+ print "Unused: $m\n";
}
}