summaryrefslogtreecommitdiff
path: root/codestyle.pl
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2018-12-07 01:29:30 +0300
committerOxore <oxore@protonmail.com>2018-12-07 03:22:30 +0300
commit1a75ab85c0555e6f4b3adb1f7a79dc2eb029ac08 (patch)
tree5537ec08ae9949d23585603dac9d6e2397970cc0 /codestyle.pl
parent14f2aadae65713192f1ef722050353c4d781f17e (diff)
Fix lines longer than 80 chars, fix codestyle.pl
codestyle.pl: limit to `src` and `include` dirs only.
Diffstat (limited to 'codestyle.pl')
-rwxr-xr-xcodestyle.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/codestyle.pl b/codestyle.pl
index 77ce512..33924a3 100755
--- a/codestyle.pl
+++ b/codestyle.pl
@@ -33,7 +33,7 @@ sub eolSpace {
}
if (not $ARGV[0]) {
- open(LS, 'find -name \*.\[c\|h\] |');
+ open(LS, 'find src include -name \*.\[c\|h\] |');
while (<LS>) {
chomp;
my $string = $_;